about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pynisher/default.nix
blob: a908945fad5dbeec6c767dd7c7c17ca636510613 (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
{ lib, buildPythonPackage, fetchPypi, psutil, docutils }:

buildPythonPackage rec {
  pname = "pynisher";
  version = "0.6.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "111d91aad471375c0509a912415ff90053ef909100facf412511383af107c124";
  };

  propagatedBuildInputs = [ psutil docutils ];

  # no tests in the Pypi archive
  doCheck = false;

  meta = with 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 ];
  };

}