2017-07-28 08:32:38 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
|
|
|
, unittest2 }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "funcsigs";
|
|
|
|
version = "1.0.2";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "0l4g5818ffyfmfs1a924811azhjj8ax9xd1cffr1mzd3ycn0zfx7";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ unittest2 ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Python function signatures from PEP362 for Python 2.6, 2.7 and 3.2+";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://github.com/aliles/funcsigs;
|
2017-07-28 08:32:38 +01:00
|
|
|
maintainers = with maintainers; [ garbas ];
|
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
}
|