From b348a66ba79d31445147f255a30e654f9ebb1e20 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 14 Dec 2024 23:01:13 +0000 Subject: [PATCH] python312Packages.django-types: 0.19.1 -> 0.20.0 --- .../python-modules/django-types/default.nix | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/django-types/default.nix b/pkgs/development/python-modules/django-types/default.nix index bbcf238a10f2..d9f4776bf293 100644 --- a/pkgs/development/python-modules/django-types/default.nix +++ b/pkgs/development/python-modules/django-types/default.nix @@ -8,23 +8,24 @@ buildPythonPackage rec { pname = "django-types"; - version = "0.19.1"; + version = "0.20.0"; pyproject = true; src = fetchPypi { pname = "django_types"; inherit version; - hash = "sha256-WueYhhLPb7w1ewGLvDs6h4tl4EJ1zEbg011mpwja/xI="; + hash = "sha256-TlXSxWFV49addd756x2VqJEwPyrBn8z2/oBW2kKT+uc="; }; - nativeBuildInputs = [ poetry-core ]; + build-system = [ poetry-core ]; - propagatedBuildInputs = [ types-psycopg2 ]; + dependencies = [ types-psycopg2 ]; - meta = with lib; { + meta = { description = "Type stubs for Django"; homepage = "https://github.com/sbdchd/django-types"; - license = licenses.mit; - maintainers = [ ]; + changelog = "https://github.com/sbdchd/django-types/blob/main/CHANGELOG.md"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ nickcao ]; }; }