ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / packageurl-python / default.nix
blob135ab6fdbc1cfa96b6cf9d7bd763bdd7f3e5940d
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "packageurl-python";
10   version = "0.10.4";
11   format = "setuptools";
13   disabled = pythonOlder "3.6";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-XJEzT5Qs1V1F6wxn3TOaU175DiXwW57AFq0YjtDvkEg=";
18   };
20   checkInputs = [
21     pytestCheckHook
22   ];
24   pythonImportsCheck = [
25     "packageurl"
26   ];
28   meta = with lib; {
29     description = "Python parser and builder for package URLs";
30     homepage = "https://github.com/package-url/packageurl-python";
31     license = licenses.mit;
32     maintainers = with maintainers; [ armijnhemel ];
33   };