Commit 784829ae authored by Martin Weinelt's avatar Martin Weinelt
Browse files
parent f1907885
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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;