3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.pyannotate: init at 1.0.6

This commit is contained in:
Chris Ostrouchov 2018-10-10 19:30:47 -04:00 committed by Frederik Rietdijk
parent 909c46b271
commit 979f91567d
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, pythonOlder
, six
, mypy_extensions
, typing
, pytest
}:
buildPythonPackage rec {
version = "1.0.6";
pname = "pyannotate";
src = fetchPypi {
inherit pname version;
sha256 = "dbdc2a26cbf45490a650e976ba45f99abe9ddbf0af5746307914e5ef419e325e";
};
checkInputs = [ pytest ];
propagatedBuildInputs = [ six mypy_extensions ]
++ stdenv.lib.optionals (pythonOlder "3.5") [ typing ];
checkPhase = ''
py.test
'';
meta = with stdenv.lib; {
homepage = https://github.com/dropbox/pyannotate;
description = "Auto-generate PEP-484 annotations";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}

View file

@ -416,6 +416,8 @@ in {
inherit (pkgs) arrow-cpp cmake pkgconfig;
};
pyannotate = callPackage ../development/python-modules/pyannotate { };
pyatspi = callPackage ../development/python-modules/pyatspi { };
pyaxmlparser = callPackage ../development/python-modules/pyaxmlparser { };