pythonPackages.sandboxlib: refactor move to python-modules
This commit is contained in:
26
pkgs/development/python-modules/sandboxlib/default.nix
Normal file
26
pkgs/development/python-modules/sandboxlib/default.nix
Normal 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;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user