1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "cogapp"; 5 version = "3.2.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "09a6e82a55af45f5e946d7002ed997869abf6f57d28fdc79f128132b5da18bf8"; 10 }; 11 12 # there are no tests 13 doCheck = false; 14 15 meta = with 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}