Merge pull request #240874 from Tom-Hubrecht/django-types

python3Packages.django-types: init at 0.17.0

authored by

Ryan Lahfa and committed by
GitHub
d3666b57 12c86290

+27
+25
pkgs/development/python-modules/django-types/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , poetry-core 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "django-types"; 9 + version = "0.17.0"; 10 + format = "pyproject"; 11 + 12 + src = fetchPypi { 13 + inherit pname version; 14 + hash = "sha256-wcQqt4h2xXxyg0LVqwYHJas3H8jcg7uFuuC+BoRqrXA="; 15 + }; 16 + 17 + nativeBuildInputs = [ poetry-core ]; 18 + 19 + meta = with lib; { 20 + description = "Type stubs for Django"; 21 + homepage = "https://pypi.org/project/django-types"; 22 + license = licenses.mit; 23 + maintainers = with maintainers; [ thubrecht ]; 24 + }; 25 + }
+2
pkgs/top-level/python-packages.nix
··· 3080 3081 django-two-factor-auth = callPackage ../development/python-modules/django-two-factor-auth { }; 3082 3083 django-versatileimagefield = callPackage ../development/python-modules/django-versatileimagefield { }; 3084 3085 django-vite = callPackage ../development/python-modules/django-vite { };
··· 3080 3081 django-two-factor-auth = callPackage ../development/python-modules/django-two-factor-auth { }; 3082 3083 + django-types = callPackage ../development/python-modules/django-types { }; 3084 + 3085 django-versatileimagefield = callPackage ../development/python-modules/django-versatileimagefield { }; 3086 3087 django-vite = callPackage ../development/python-modules/django-vite { };