Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
60 lines
1.1 KiB
Nix
60 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
distro,
|
|
httplib2,
|
|
oauthlib,
|
|
setuptools,
|
|
six,
|
|
wadllib,
|
|
fixtures,
|
|
lazr-uri,
|
|
pytestCheckHook,
|
|
wsgi-intercept,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "lazr-restfulclient";
|
|
version = "0.14.6";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "lazr.restfulclient";
|
|
inherit version;
|
|
hash = "sha256-Q/EqHTlIRjsUYgOMR7Qp3LXkLgun8uFlEbArpdKt/9s=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
distro
|
|
httplib2
|
|
oauthlib
|
|
setuptools
|
|
six
|
|
wadllib
|
|
];
|
|
|
|
# E ModuleNotFoundError: No module named 'lazr.uri'
|
|
doCheck = false;
|
|
nativeCheckInputs = [
|
|
fixtures
|
|
lazr-uri
|
|
pytestCheckHook
|
|
wsgi-intercept
|
|
];
|
|
|
|
pythonImportsCheck = [ "lazr.restfulclient" ];
|
|
|
|
pythonNamespaces = [ "lazr" ];
|
|
|
|
meta = {
|
|
description = "Programmable client library that takes advantage of the commonalities among";
|
|
homepage = "https://launchpad.net/lazr.restfulclient";
|
|
changelog = "https://git.launchpad.net/lazr.restfulclient/tree/NEWS.rst?h=${version}";
|
|
license = lib.licenses.lgpl3Plus;
|
|
maintainers = [ ];
|
|
};
|
|
}
|