Merge pull request #41837 from Assassinkin/pynisher_1

pythonPackages.pynisher: init at 0.4.2

Changed files
+27
pkgs
development
python-modules
pynisher
top-level
+25
pkgs/development/python-modules/pynisher/default.nix
···
···
+
{ 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 ];
+
};
+
+
}
+
+2
pkgs/top-level/python-packages.nix
···
inherit (pkgs.llvmPackages) openmp;
};
pyparser = callPackage ../development/python-modules/pyparser { };
pyqt4 = callPackage ../development/python-modules/pyqt/4.x.nix {
···
inherit (pkgs.llvmPackages) openmp;
};
+
pynisher = callPackage ../development/python-modules/pynisher { };
+
pyparser = callPackage ../development/python-modules/pyparser { };
pyqt4 = callPackage ../development/python-modules/pyqt/4.x.nix {