summary refs log tree commit diff
path: root/pkgs/development/python-modules/pynisher/default.nix
blob: f389bee215869525f9ec8518e75e8593e4cba53a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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 ];
  };

}