Merge pull request #297776 from r-ryantm/auto-update/python311Packages.packageurl-python

python311Packages.packageurl-python: 0.14.0 -> 0.15.0
This commit is contained in:
Nick Cao 2024-03-22 11:35:51 -04:00 committed by GitHub
commit 3b49e255c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,20 +3,25 @@
, fetchPypi
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "packageurl-python";
version = "0.14.0";
format = "setuptools";
version = "0.15.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-/wkUfN2q6eXFn/yxLfjsDht3S0UJk5nyjDaxo9/fUuI=";
hash = "sha256-8hmyzmNIGFonvWpy5v3J+YTmyfoVfv+ny5PjQcSc3MI=";
};
build-system = [
setuptools
];
nativeCheckInputs = [
pytestCheckHook
];