about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWeijia Wang2023-03-29 00:57:40 +0300
committerGitHub2023-03-29 00:57:40 +0300
commit7dede23a5ad0b502fd5bd78b105f165f1c5f9afc (patch)
tree216e6397cce17d0b2906b6e95d3e5c4025d16403
parentb71a93e17080b5931c4fe109f7a75518f5203c26 (diff)
parentcfc14296519ec87ad68f122de1a04ce6f7ce0f49 (diff)
Merge pull request #223467 from r-ryantm/auto-update/python310Packages.packageurl-python
python310Packages.packageurl-python: 0.10.4 -> 0.11.1
-rw-r--r--pkgs/development/python-modules/packageurl-python/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/packageurl-python/default.nix b/pkgs/development/python-modules/packageurl-python/default.nix
index a1764765ef3d..1b7f7957382c 100644
--- a/pkgs/development/python-modules/packageurl-python/default.nix
+++ b/pkgs/development/python-modules/packageurl-python/default.nix
@@ -7,14 +7,14 @@
 
 buildPythonPackage rec {
   pname = "packageurl-python";
-  version = "0.10.4";
+  version = "0.11.1";
   format = "setuptools";
 
-  disabled = pythonOlder "3.6";
+  disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-XJEzT5Qs1V1F6wxn3TOaU175DiXwW57AFq0YjtDvkEg=";
+    hash = "sha256-u8xT0stZIMgVwWJsdZkvMZv8RQtziT+nvYqsWGmqSf4=";
   };
 
   nativeCheckInputs = [
@@ -28,6 +28,7 @@ buildPythonPackage rec {
   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 ];
   };