nixpkgs/pkgs/development/python-modules/packageurl-python/default.nix
Martin Weinelt 413e4054ee python3Packages.packageurl-python: 0.17.5 -> 0.17.6
https://github.com/package-url/packageurl-python/blob/v0.17.6/CHANGELOG.rst

This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:44 +01:00

39 lines
915 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pydantic,
pytestCheckHook,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "packageurl-python";
version = "0.17.6";
pyproject = true;
src = fetchFromGitHub {
owner = "package-url";
repo = "packageurl-python";
tag = "v${finalAttrs.version}";
fetchSubmodules = true;
hash = "sha256-jH4zJN3XGPFBnto26pcvADXogpooj3dqpqkWnKXgICY=";
};
build-system = [ setuptools ];
nativeCheckInputs = [
pydantic
pytestCheckHook
];
pythonImportsCheck = [ "packageurl" ];
meta = {
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/${finalAttrs.src.tag}/CHANGELOG.rst";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ armijnhemel ];
};
})