pythonPackages.sandboxlib: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-27 09:56:20 -04:00
parent 77df3ef7a7
commit f6944a991a
2 changed files with 27 additions and 19 deletions

View File

@@ -0,0 +1,26 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, pbr
, isPy3k
}:
buildPythonPackage rec {
pname = "sandboxlib";
version = "0.31";
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "0csj8hbpylqdkxcpqkcfs73dfvdqkyj23axi8m9drqdi4dhxb41h";
};
buildInputs = [ pbr ];
meta = with stdenv.lib; {
description = "Sandboxing Library for Python";
homepage = https://pypi.python.org/pypi/sandboxlib/0.3.1;
license = licenses.gpl2;
};
}