ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / plugnplay / default.nix
blob259fe96028a94cbf5db31c360af3666ea13a5114
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
5 buildPythonPackage rec {
6   pname = "plugnplay";
7   version = "0.5.4";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "877e2d2500a45aaf31e5175f9f46182088d3e2d64c1c6b9ff6c778ae0ee594c8";
12   };
14   # no tests
15   doCheck = false;
17   pythonImportsCheck = [
18     "plugnplay"
19   ];
21   meta = with lib; {
22     description = "A Generic plug-in system for python applications";
23     homepage = "https://github.com/daltonmatos/plugnplay";
24     license = licenses.gpl2Only;
25     maintainers = teams.determinatesystems.members;
26   };