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