pythonPackages.EasyProcess: Move to own file
This commit is contained in:
parent
681c0a21d8
commit
ef4a84007e
21
pkgs/development/python-modules/easyprocess/default.nix
Normal file
21
pkgs/development/python-modules/easyprocess/default.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "EasyProcess";
|
||||||
|
version = "0.2.3";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "07z6485bjxkmx26mp1p1ww19d10qavw0s006bidzailsvk543qll";
|
||||||
|
};
|
||||||
|
|
||||||
|
# No tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Easy to use python subprocess interface";
|
||||||
|
homepage = https://github.com/ponty/EasyProcess;
|
||||||
|
license = licenses.bsdOriginal;
|
||||||
|
maintainers = with maintainers; [ layus ];
|
||||||
|
};
|
||||||
|
}
|
@ -2213,24 +2213,7 @@ in {
|
|||||||
|
|
||||||
easydict = callPackage ../development/python-modules/easydict { };
|
easydict = callPackage ../development/python-modules/easydict { };
|
||||||
|
|
||||||
EasyProcess = buildPythonPackage rec {
|
EasyProcess = callPackage ../development/python-modules/easyprocess { };
|
||||||
name = "EasyProcess-0.2.3";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/E/EasyProcess/${name}.tar.gz";
|
|
||||||
sha256 = "94e241cadc9a46f55b5c06000df85618849602e7e1865b8de87576b90a22e61f";
|
|
||||||
};
|
|
||||||
|
|
||||||
# No tests
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Easy to use python subprocess interface";
|
|
||||||
homepage = "https://github.com/ponty/EasyProcess";
|
|
||||||
license = licenses.bsdOriginal;
|
|
||||||
maintainers = with maintainers; [ layus ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
easy-thumbnails = callPackage ../development/python-modules/easy-thumbnails { };
|
easy-thumbnails = callPackage ../development/python-modules/easy-thumbnails { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user