about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2023-11-05 14:02:19 +0100
committerGitHub <noreply@github.com>2023-11-05 14:02:19 +0100
commit3856ec854c7f13652d149198e6875a5640a13886 (patch)
tree978f10cbe6a9d6b8f9d275b21d59e032edacf614 /pkgs
parent58f5915144db73dca5f9f879b3dfef0e9ed6462e (diff)
parent79707e7c0497b44769541b59995d2228d6bbe88b (diff)
Merge pull request #265631 from fabaff/vine-bump
python311Packages.vine: 5.0.0 -> 5.1.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/vine/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/vine/default.nix b/pkgs/development/python-modules/vine/default.nix
index 200f4f68ebef6..47e9c7b7a3c7b 100644
--- a/pkgs/development/python-modules/vine/default.nix
+++ b/pkgs/development/python-modules/vine/default.nix
@@ -8,14 +8,14 @@
 
 buildPythonPackage rec {
   pname = "vine";
-  version = "5.0.0";
+  version = "5.1.0";
   format = "setuptools";
 
-  disabled = pythonOlder "3.6";
+  disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-fTsWJKlT2oLvY0YgE7vScdPrdXUUifmAdZjo80C9Y34=";
+    hash = "sha256-i2LpgdNcQQSSEc9ioKEkLYwe6b0Vuxls44rv1nmeYeA=";
   };
 
   nativeCheckInputs = [
@@ -30,6 +30,7 @@ buildPythonPackage rec {
   meta = with lib; {
     description = "Python promises";
     homepage = "https://github.com/celery/vine";
+    changelog = "https://github.com/celery/vine/releases/tag/v${version}";
     license = licenses.bsd3;
     maintainers = with maintainers; [ fab ];
   };