pythonPackages.sh: move to python-modules

This commit is contained in:
sveitser 2018-10-24 22:10:04 +08:00
parent 9f327caa1f
commit 5e4fd34cfe
No known key found for this signature in database
GPG Key ID: 765E892DAE70682C
2 changed files with 25 additions and 24 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, buildPythonPackage, fetchPypi, coverage }:
buildPythonPackage rec {
pname = "sh";
version = "1.12.14";
src = fetchPypi {
inherit pname version;
sha256 = "1z2hx357xp3v4cv44xmqp7lli3frndqpyfmpbxf7n76h7s1zaaxm";
};
checkInputs = [ coverage ];
# A test needs the HOME directory to be different from $TMPDIR.
preCheck = ''
HOME=$(mktemp -d)
'';
meta = {
description = "Python subprocess interface";
homepage = https://pypi.python.org/pypi/sh/;
license = stdenv.lib.licenses.mit;
};
}

View File

@ -6727,30 +6727,7 @@ in {
};
};
sh = buildPythonPackage rec {
pname = "sh";
version = "1.12.14";
src = fetchPypi {
inherit pname version;
sha256 = "1z2hx357xp3v4cv44xmqp7lli3frndqpyfmpbxf7n76h7s1zaaxm";
};
buildInputs = with self; [ coverage ];
# A test needs the HOME directory to be different from $TMPDIR.
preCheck = ''
HOME=$(mktemp -d)
'';
meta = {
description = "Python subprocess interface";
homepage = https://pypi.python.org/pypi/sh/;
license = licenses.mit;
};
};
sh = callPackage ../development/python-modules/sh { };
sipsimple = buildPythonPackage rec {
name = "sipsimple-${version}";