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

python3Packages.django-types: init at 0.17.0
This commit is contained in:
Ryan Lahfa 2023-09-21 15:50:22 +02:00 committed by GitHub
commit d3666b5740
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib
, buildPythonPackage
, fetchPypi
, poetry-core
}:
buildPythonPackage rec {
pname = "django-types";
version = "0.17.0";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-wcQqt4h2xXxyg0LVqwYHJas3H8jcg7uFuuC+BoRqrXA=";
};
nativeBuildInputs = [ poetry-core ];
meta = with lib; {
description = "Type stubs for Django";
homepage = "https://pypi.org/project/django-types";
license = licenses.mit;
maintainers = with maintainers; [ thubrecht ];
};
}

View file

@ -3080,6 +3080,8 @@ self: super: with self; {
django-two-factor-auth = callPackage ../development/python-modules/django-two-factor-auth { };
django-types = callPackage ../development/python-modules/django-types { };
django-versatileimagefield = callPackage ../development/python-modules/django-versatileimagefield { };
django-vite = callPackage ../development/python-modules/django-vite { };