Files
Acid Bong 13ef7cb44a python3Packages.lazr-restfulclient: update homepage, remove changelog
Pypi page is more verbose and also contains the changelog itself. The
original git/bazaar repo is (at the moment of committing) unviewable.
2026-07-21 18:12:11 +03:00

59 lines
1.0 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://pypi.org/project/lazr.restfulclient";
license = lib.licenses.lgpl3Plus;
maintainers = [ ];
};
}