python312Packages.django-types: 0.19.1 -> 0.20.0 (#365263)

This commit is contained in:
Robert Schütz
2024-12-17 03:36:25 -08:00
committed by GitHub

View File

@@ -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 ];
};
}