1{ stdenv, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "cogapp";
5 version = "3.0.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "5e5da2bcfc4e4750c66cecb80ea4eaed1ef4fddd3787c989d4f5bfffb1152d6a";
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}