Commit f5244e48 authored by Tom Hubrecht's avatar Tom Hubrecht
Browse files

python3Packages.django-types: init at 0.17.0

parent 67b08d46
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
@@ -2905,6 +2905,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 { };