Files
nixpkgs/pkgs/development/python-modules/packageurl-python/default.nix
Martin Weinelt c8afd15d4f python3Packages.packageurl-python: 0.16.0 -> 0.17.3
https://github.com/package-url/packageurl-python/blob/v0.17.3/CHANGELOG.rst

This commit was automatically generated using update-python-libraries.
2025-08-09 19:02:13 +02:00

37 lines
833 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "packageurl-python";
version = "0.17.3";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "packageurl_python";
inherit version;
hash = "sha256-cZmV8Mf3BokCd7pX7JWvyqlpbINqdnV3ChJ5sBpB974=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "packageurl" ];
meta = with lib; {
description = "Python parser and builder for package URLs";
homepage = "https://github.com/package-url/packageurl-python";
changelog = "https://github.com/package-url/packageurl-python/blob/v${version}/CHANGELOG.rst";
license = licenses.mit;
maintainers = with maintainers; [ armijnhemel ];
};
}