0d9fc34957
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
38 lines
683 B
Nix
38 lines
683 B
Nix
{ buildPythonPackage
|
|
, django
|
|
, django-stubs-ext
|
|
, fetchPypi
|
|
, lib
|
|
, mypy
|
|
, tomli
|
|
, types-pytz
|
|
, types-pyyaml
|
|
, typing-extensions
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-stubs";
|
|
version = "1.13.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-vMYYujU9q8VA2YK52sHVoZIWUvj8KhNlPVRaV9XjzA8=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
django
|
|
django-stubs-ext
|
|
mypy
|
|
tomli
|
|
types-pytz
|
|
types-pyyaml
|
|
typing-extensions
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "PEP-484 stubs for Django";
|
|
homepage = "https://github.com/typeddjango/django-stubs";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ elohmeier ];
|
|
};
|
|
}
|