Skip to content

Commit caffc47

Browse files
authored
python312Packages.django-types: 0.19.1 -> 0.20.0 (NixOS#365263)
2 parents 242b66f + b348a66 commit caffc47

File tree

1 file changed

+8
-7
lines changed
  • pkgs/development/python-modules/django-types

1 file changed

+8
-7
lines changed

pkgs/development/python-modules/django-types/default.nix

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,24 @@
88

99
buildPythonPackage rec {
1010
pname = "django-types";
11-
version = "0.19.1";
11+
version = "0.20.0";
1212
pyproject = true;
1313

1414
src = fetchPypi {
1515
pname = "django_types";
1616
inherit version;
17-
hash = "sha256-WueYhhLPb7w1ewGLvDs6h4tl4EJ1zEbg011mpwja/xI=";
17+
hash = "sha256-TlXSxWFV49addd756x2VqJEwPyrBn8z2/oBW2kKT+uc=";
1818
};
1919

20-
nativeBuildInputs = [ poetry-core ];
20+
build-system = [ poetry-core ];
2121

22-
propagatedBuildInputs = [ types-psycopg2 ];
22+
dependencies = [ types-psycopg2 ];
2323

24-
meta = with lib; {
24+
meta = {
2525
description = "Type stubs for Django";
2626
homepage = "https://github.com/sbdchd/django-types";
27-
license = licenses.mit;
28-
maintainers = [ ];
27+
changelog = "https://github.com/sbdchd/django-types/blob/main/CHANGELOG.md";
28+
license = lib.licenses.mit;
29+
maintainers = with lib.maintainers; [ nickcao ];
2930
};
3031
}

0 commit comments

Comments
 (0)