0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

mypy: add missing dep, rename mypy_extensions to mypy-extensions

This commit is contained in:
Frederik Rietdijk 2019-10-24 09:56:26 +02:00
parent 2e5b23d86b
commit 5e8be2fb84
5 changed files with 11 additions and 8 deletions

View file

@ -3,7 +3,7 @@
, fetchPypi
, pythonOlder
, six
, mypy_extensions
, mypy-extensions
, typing
, pytest
}:
@ -18,7 +18,7 @@ buildPythonPackage rec {
};
checkInputs = [ pytest ];
propagatedBuildInputs = [ six mypy_extensions ]
propagatedBuildInputs = [ six mypy-extensions ]
++ stdenv.lib.optionals (pythonOlder "3.5") [ typing ];
checkPhase = ''