about summary refs log tree commit diff
path: root/pkgs/development/python-modules/django-mysql
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-06-17 17:13:15 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-06-17 17:15:58 +0200
commit784829aeda1a647717dbb85f050b2734e61c5b81 (patch)
tree2d00eb931b9e930a13938d3da4b4a261f463625d /pkgs/development/python-modules/django-mysql
parentf190788519467c8785aeab8187b830e68d8209cd (diff)
python310Packages.django-mysql: 4.9.0 -> 4.10.0
https://github.com/adamchainz/django-mysql/blob/4.10.0/docs/changelog.rst
https://github.com/adamchainz/django-mysql/compare/refs/tags/4.9.0...4.10.0
Diffstat (limited to 'pkgs/development/python-modules/django-mysql')
-rw-r--r--pkgs/development/python-modules/django-mysql/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/django-mysql/default.nix b/pkgs/development/python-modules/django-mysql/default.nix
index 0a53c6489fe0b..e05e59f2dab63 100644
--- a/pkgs/development/python-modules/django-mysql/default.nix
+++ b/pkgs/development/python-modules/django-mysql/default.nix
@@ -16,14 +16,14 @@
 
 buildPythonPackage rec {
   pname = "django-mysql";
-  version = "4.9.0";
+  version = "4.10.0";
   format = "pyproject";
 
   src = fetchFromGitHub {
     owner = "adamchainz";
     repo = "django-mysql";
     rev = "refs/tags/${version}";
-    hash = "sha256-mXAdwNqSIrWMh+YcCjksiqmkLSXGAd+ofyzJmiG+gNo=";
+    hash = "sha256-5RmNYOY0m6BRD/3cENQLWPJ+dElR53oZaqk616kfQTA=";
   };
 
   nativeBuildInputs = [
@@ -45,7 +45,7 @@ buildPythonPackage rec {
   ];
 
   meta = with lib; {
-    changelog = "https://django-mysql.readthedocs.io/en/latest/changelog.html";
+    changelog = "https://github.com/adamchainz/django-mysql/blob/${version}/docs/changelog.rst";
     description = "Extensions to Django for use with MySQL/MariaD";
     homepage = "https://github.com/adamchainz/django-mysql";
     license = licenses.mit;