pythonPackages.pynisher: init at 0.4.2

This commit is contained in:
nagato.pain 2018-06-11 05:58:49 -07:00
parent b325fc7d02
commit fb7f515be7
2 changed files with 27 additions and 0 deletions

View File

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

View File

@ -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 {