about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyannotate/default.nix
blob: db48bb06bc0f3890b6ab61d9100e01ebb1067c20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ stdenv
, buildPythonPackage
, fetchPypi
, pythonOlder
, six
, mypy_extensions
, typing
, pytest
}:

buildPythonPackage rec {
  version = "1.0.7";
  pname = "pyannotate";

  src = fetchPypi {
    inherit pname version;
    sha256 = "54e6035a8601248992e17734034e6555842c6ea9863f90c15d14fe76a184be07";
  };

  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 ];
  };
}