nixpkgs/pkgs/development/python-modules/packageurl-python/default.nix
Armijn Hemel ef3912b34c python3Packages.packageurl-python: init at 0.9.4
packageurl: add checkInputs as suggested by review

packageurl -> packageurl-python

packageurl-python: add missing dependency
2021-03-20 21:44:45 +01:00

23 lines
578 B
Nix

{ buildPythonPackage, fetchPypi, lib, pytestCheckHook }:
buildPythonPackage rec {
pname = "packageurl-python";
version = "0.9.4";
src = fetchPypi {
inherit pname version;
sha256 = "0mpvj8imsaqhrgfq1cxx16flc5201y78kqa7bh2i5zxsc29843mx";
};
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "packageurl" ];
meta = with lib; {
description = "Python parser and builder for package URLs";
homepage = "https://github.com/package-url/packageurl-python";
license = licenses.mit;
maintainers = with maintainers; [ armijnhemel ];
};
}