1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "cogapp"; 5 version = "2.5.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "f8cf2288fb5a2087eb4a00d8b347ddc86e9058d4ab26b8c868433eb401adfe1c"; 10 }; 11 12 # there are no tests 13 doCheck = false; 14 15 meta = with stdenv.lib; { 16 description = "A code generator for executing Python snippets in source files"; 17 homepage = http://nedbatchelder.com/code/cog; 18 license = licenses.mit; 19 maintainers = with maintainers; [ lovek323 ]; 20 }; 21}