nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python310Packages.django-stubs: 1.15.0 -> 4.2.0

Changelog: https://github.com/typeddjango/django-stubs/releases/tag/4.2.0

+16 -5
+16 -5
pkgs/development/python-modules/django-stubs/default.nix
··· 1 - { buildPythonPackage 1 + { lib 2 + , buildPythonPackage 2 3 , django 3 4 , django-stubs-ext 4 5 , fetchPypi 5 - , lib 6 6 , mypy 7 + , pytestCheckHook 8 + , pythonOlder 7 9 , tomli 8 10 , types-pytz 9 11 , types-pyyaml ··· 14 12 15 13 buildPythonPackage rec { 16 14 pname = "django-stubs"; 17 - version = "1.15.0"; 15 + version = "4.2.0"; 16 + format = "setuptools"; 17 + 18 + disabled = pythonOlder "3.7"; 18 19 19 20 src = fetchPypi { 20 21 inherit pname version; 21 - hash = "sha256-C7+esXLFsG7M/y1wTHw5BuSixhRt+MMu6fOlHikmVYE="; 22 + hash = "sha256-k7r/gk8KBW5xA2tCO5QqdPB7kJ5F4/o4GFuRD1l8XAg="; 22 23 }; 23 24 24 25 propagatedBuildInputs = [ 25 26 django 26 27 django-stubs-ext 27 28 mypy 28 - tomli 29 29 types-pytz 30 30 types-pyyaml 31 31 typing-extensions 32 + ] ++ lib.optionals (pythonOlder "3.11") [ 33 + tomli 34 + ]; 35 + 36 + nativeCheckInputs = [ 37 + pytestCheckHook 32 38 ]; 33 39 34 40 meta = with lib; { 35 41 description = "PEP-484 stubs for Django"; 36 42 homepage = "https://github.com/typeddjango/django-stubs"; 43 + changelog = "https://github.com/typeddjango/django-stubs/releases/tag/${version}"; 37 44 license = licenses.mit; 38 45 maintainers = with maintainers; [ elohmeier ]; 39 46 };