pythonPackages.cogapp: Move to own file
This commit is contained in:
parent
8635a10749
commit
d2829d7693
21
pkgs/development/python-modules/cogapp/default.nix
Normal file
21
pkgs/development/python-modules/cogapp/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "cogapp";
|
||||
version = "2.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0gzmzbsk54r1qa6wd0yg4zzdxvn2f19ciprr2acldxaknzrpllnn";
|
||||
};
|
||||
|
||||
# there are no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A code generator for executing Python snippets in source files";
|
||||
homepage = http://nedbatchelder.com/code/cog;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ lovek323 ];
|
||||
};
|
||||
}
|
@ -1580,26 +1580,7 @@ in {
|
||||
|
||||
codecov = callPackage ../development/python-modules/codecov {};
|
||||
|
||||
cogapp = buildPythonPackage rec {
|
||||
version = "2.3";
|
||||
name = "cogapp-${version}";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/c/cogapp/${name}.tar.gz";
|
||||
sha256 = "0gzmzbsk54r1qa6wd0yg4zzdxvn2f19ciprr2acldxaknzrpllnn";
|
||||
};
|
||||
|
||||
# there are no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "A code generator for executing Python snippets in source files";
|
||||
homepage = http://nedbatchelder.com/code/cog;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ lovek323 ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
};
|
||||
cogapp = callPackage ../development/python-modules/cogapp {};
|
||||
|
||||
colorama = callPackage ../development/python-modules/colorama { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user