nixpkgs/pkgs/development/python-modules/pynisher/default.nix

26 lines
629 B
Nix
Raw Normal View History

{ lib, stdenv, buildPythonPackage, fetchPypi, psutil, docutils }:
2018-06-11 14:58:49 +02:00
buildPythonPackage rec {
pname = "pynisher";
version = "0.6.3";
2018-06-11 14:58:49 +02:00
src = fetchPypi {
inherit pname version;
sha256 = "e4e1d9366fc4ca60b4b2354b6d12e65600600a8c7bf4392c84f2f4ff4abc85ff";
2018-06-11 14:58:49 +02:00
};
propagatedBuildInputs = [ psutil docutils ];
# no tests in the Pypi archive
doCheck = false;
meta = with lib; {
2018-06-11 14:58:49 +02:00
description = "The pynisher is a little module intended to limit a functions resources.";
homepage = "https://github.com/sfalkner/pynisher";
2018-06-11 14:58:49 +02:00
license = licenses.mit;
maintainers = with maintainers; [ psyanticy ];
};
}