Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / nagiosplugin / default.nix
bloba7e7b016577dee80897f4d71bf62a8c1c6b56d94
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , numpy
5 , pytestCheckHook
6 , pythonOlder
7 , twine
8 }:
10 buildPythonPackage rec {
11   pname = "nagiosplugin";
12   version = "1.3.3";
13   format = "setuptools";
15   disabled = pythonOlder "3.7";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-vOr67DWfAyOT3dVgrizI0WNhODPsY8k85xifhZBOU9Y=";
20   };
22   nativeBuildInputs = [
23     twine
24   ];
26   nativeCheckInputs = [
27     numpy
28     pytestCheckHook
29   ];
31   disabledTests = [
32     # Test relies on who, which does not work in the sandbox
33     "test_check_users"
34   ];
36   pythonImportsCheck = [
37     "nagiosplugin"
38   ];
40   meta = with lib; {
41     description = "Python class library which helps with writing Nagios (Icinga) compatible plugins";
42     homepage = "https://github.com/mpounsett/nagiosplugin";
43     license = licenses.zpl21;
44     maintainers = with maintainers; [ symphorien ];
45   };