pythonPackages.EasyProcess: Move to own file

This commit is contained in:
Elis Hirwing
2018-04-03 15:20:06 +02:00
committed by Frederik Rietdijk
parent 681c0a21d8
commit ef4a84007e
2 changed files with 22 additions and 18 deletions

View 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 ];
};
}