nixpkgs/pkgs/development/python-modules/pyannotate/default.nix
2021-01-25 18:31:47 +01:00

35 lines
672 B
Nix

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