Unverified Commit d3666b57 authored by Ryan Lahfa's avatar Ryan Lahfa Committed by GitHub
Browse files

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

python3Packages.django-types: init at 0.17.0
parents 12c86290 f5244e48
Loading
Loading
Loading
Loading
+25 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };