1{ stdenv, buildPythonPackage, fetchPypi 2, unittest2 }: 3 4buildPythonPackage rec { 5 pname = "funcsigs"; 6 version = "1.0.2"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "0l4g5818ffyfmfs1a924811azhjj8ax9xd1cffr1mzd3ycn0zfx7"; 11 }; 12 13 buildInputs = [ unittest2 ]; 14 15 meta = with stdenv.lib; { 16 description = "Python function signatures from PEP362 for Python 2.6, 2.7 and 3.2+"; 17 homepage = https://github.com/aliles/funcsigs; 18 maintainers = with maintainers; [ garbas ]; 19 license = licenses.asl20; 20 }; 21}