summary refs log tree commit diff
path: root/pkgs/development/python-modules/django-types/default.nix
blob: 5c16312538ace66f1a40025543a590d8571e8455 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib
, buildPythonPackage
, fetchPypi
, poetry-core
}:

buildPythonPackage rec {
  pname = "django-types";
  version = "0.18.0";
  format = "pyproject";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-uOIzTIEIZNer8RzTzbHaOyAVtn5/EnAAfjN3f/G9hlQ=";
  };

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