Merge pull request #41837 from Assassinkin/pynisher_1

pythonPackages.pynisher: init at 0.4.2
This commit is contained in:
Jörg Thalheim 2018-06-12 10:58:40 +01:00 committed by GitHub
commit da8920622a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

@ -396,6 +396,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 {