pythonPackages.pynisher: init at 0.4.2
This commit is contained in:
parent
b325fc7d02
commit
fb7f515be7
|
@ -0,0 +1,25 @@
|
||||||
|
{ stdenv, buildPythonPackage, fetchPypi, psutil, docutils }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pynisher";
|
||||||
|
version = "0.4.2";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0sqa3zzqcr4vl5yhnafw1y187z62m4alajggc7dm2riw2ihd9kxl";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ psutil docutils ];
|
||||||
|
|
||||||
|
# no tests in the Pypi archive
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "The pynisher is a little module intended to limit a functions resources.";
|
||||||
|
homepage = https://github.com/sfalkner/pynisher;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ psyanticy ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
||||||
|
|
|
@ -392,6 +392,8 @@ in {
|
||||||
inherit (pkgs.llvmPackages) openmp;
|
inherit (pkgs.llvmPackages) openmp;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pynisher = callPackage ../development/python-modules/pynisher { };
|
||||||
|
|
||||||
pyparser = callPackage ../development/python-modules/pyparser { };
|
pyparser = callPackage ../development/python-modules/pyparser { };
|
||||||
|
|
||||||
pyqt4 = callPackage ../development/python-modules/pyqt/4.x.nix {
|
pyqt4 = callPackage ../development/python-modules/pyqt/4.x.nix {
|
||||||
|
|
Loading…
Reference in New Issue