2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi }:
|
2018-03-31 17:57:31 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "cogapp";
|
2021-09-01 12:17:35 +01:00
|
|
|
version = "3.1.0";
|
2018-03-31 17:57:31 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-09-01 12:17:35 +01:00
|
|
|
sha256 = "c43e374ee5ca2a35fbc68556f598bd8578eabe8a890487980bba56945b5ce9c6";
|
2018-03-31 17:57:31 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# there are no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-03-31 17:57:31 +01:00
|
|
|
description = "A code generator for executing Python snippets in source files";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://nedbatchelder.com/code/cog";
|
2018-03-31 17:57:31 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
|
|
};
|
|
|
|
}
|