nixpkgs/pkgs/development/python-modules/wadllib/default.nix
2024-11-02 23:54:53 +09:00

37 lines
647 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
lazr-uri,
}:
buildPythonPackage rec {
pname = "wadllib";
version = "2.0.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-HtuvI+T6NP6nDJs4C6oqE5sQhq5InrzMxLO2X8lzdCc=";
};
build-system = [ setuptools ];
dependencies = [
lazr-uri
];
pythonImportsCheck = [ "wadllib" ];
# pypi tarball has no tests
doCheck = false;
meta = with lib; {
description = "Navigate HTTP resources using WADL files as guides";
homepage = "https://launchpad.net/wadllib";
license = licenses.lgpl3Only;
maintainers = [ ];
};
}