Files
nixpkgs/pkgs/development/python-modules/mypy/extensions.nix
Matthieu Coudron 676ceb81b7 python3Packages.mypy: 0.620 -> 0.630
Now requires mypy_extensions so added it as well.
2018-09-18 00:31:41 +09:00

26 lines
652 B
Nix

{ stdenv, fetchPypi, buildPythonPackage, typing, isPy3k }:
buildPythonPackage rec {
pname = "mypy_extensions";
version = "0.4.1";
# Tests not included in pip package.
doCheck = false;
src = fetchPypi {
inherit pname version;
sha256 = "04h8brrbbx151dfa2cvvlnxgmb5wa00mhd2z7nd20s8kyibfkq1p";
};
disabled = !isPy3k;
propagatedBuildInputs = [ typing ];
meta = with stdenv.lib; {
description = "Experimental type system extensions for programs checked with the mypy typechecker";
homepage = "http://www.mypy-lang.org";
license = licenses.mit;
maintainers = with maintainers; [ martingms lnl7 ];
};
}