summary refs log tree commit diff
path: root/pkgs/development/python-modules/pynisher/default.nix
blob: 5f877fd90d26d42233506232aa51815e92f8cc2a (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.5.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1b1079315ad1009de108c9ad701f6ae5274264e64503fc22c2de366d99953f34";
  };

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

}