summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorMartin Weinelt <mweinelt@users.noreply.github.com>2023-02-08 00:11:31 +0000
committerGitHub <noreply@github.com>2023-02-08 00:11:31 +0000
commitc5ce8986dff8e06ace05a0158fe617707228ac25 (patch)
treeee104922d9145b648b789866bfa6f3ee01eaffcc /pkgs/development
parent505dac8a8c82b3f8a839d566c1b57894db3029b6 (diff)
parentd618eaa95a378f39191fda75f23132741fa3b731 (diff)
downloadnixpkgs-c5ce8986dff8e06ace05a0158fe617707228ac25.tar
nixpkgs-c5ce8986dff8e06ace05a0158fe617707228ac25.tar.gz
nixpkgs-c5ce8986dff8e06ace05a0158fe617707228ac25.tar.bz2
nixpkgs-c5ce8986dff8e06ace05a0158fe617707228ac25.tar.lz
nixpkgs-c5ce8986dff8e06ace05a0158fe617707228ac25.tar.xz
nixpkgs-c5ce8986dff8e06ace05a0158fe617707228ac25.tar.zst
nixpkgs-c5ce8986dff8e06ace05a0158fe617707228ac25.zip
Merge pull request #215165 from mweinelt/django-rq-2.7.0
python310Packages.django-rq: 2.6.0 -> 2.7.0
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/django-rq/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/django-rq/default.nix b/pkgs/development/python-modules/django-rq/default.nix
index d0894177c3f..a0bfca2a8b2 100644
--- a/pkgs/development/python-modules/django-rq/default.nix
+++ b/pkgs/development/python-modules/django-rq/default.nix
@@ -10,7 +10,7 @@
 
 buildPythonPackage rec {
   pname = "django-rq";
-  version = "2.6.0";
+  version = "2.7.0";
   format = "setuptools";
   disabled = isPy27;
 
@@ -18,7 +18,7 @@ buildPythonPackage rec {
     owner = "rq";
     repo = pname;
     rev = "refs/tags/v${version}";
-    sha256 = "sha256-Na/GeQc74LCoi7Dp3HcSnmUaLi1EjyYYgZTcFyzqOQM=";
+    hash = "sha256-MUIwgG8GKL+V5GgiC7gZXn5tlSVrmTj/IFiP+hVB7Ks=";
   };
 
   propagatedBuildInputs = [
@@ -37,6 +37,7 @@ buildPythonPackage rec {
   meta = with lib; {
     description = "Simple app that provides django integration for RQ (Redis Queue)";
     homepage = "https://github.com/rq/django-rq";
+    changelog = "https://github.com/rq/django-rq/releases/tag/v${version}";
     license = licenses.mit;
     maintainers = with maintainers; [ hexa ];
   };