summary refs log tree commit diff
path: root/pkgs/development/python-modules/funcsigs/default.nix
blob: 1febf9d356eb27aa2a3366e158c0444d33e4570d (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
{ stdenv, buildPythonPackage, fetchPypi
, isPyPy, isPy3k, unittest2
}:

buildPythonPackage rec {
  pname = "funcsigs";
  version = "1.0.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0l4g5818ffyfmfs1a924811azhjj8ax9xd1cffr1mzd3ycn0zfx7";
  };

  buildInputs = [ unittest2 ];

  # https://github.com/testing-cabal/funcsigs/issues/10
  patches = stdenv.lib.optional (isPyPy && isPy3k) [ ./fix-pypy3-tests.patch ];

  meta = with stdenv.lib; {
    description = "Python function signatures from PEP362 for Python 2.6, 2.7 and 3.2+";
    homepage = "https://github.com/aliles/funcsigs";
    maintainers = with maintainers; [ ];
    license = licenses.asl20;
  };
}