depot/third_party/nixpkgs/pkgs/development/python-modules/pynisher/default.nix
Default email 9405df4a82 Project import generated by Copybara.
GitOrigin-RevId: 8e4fe32876ca15e3d5eb3ecd3ca0b224417f5f17
2021-04-26 15:14:03 -04:00

25 lines
621 B
Nix

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