Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / plugnplay / default.nix
blob1b8449ffe7cecd9d015bc4fe7f3f13046c5565ef
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
5 buildPythonPackage rec {
6   pname = "plugnplay";
7   version = "0.5.4";
8   format = "setuptools";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "877e2d2500a45aaf31e5175f9f46182088d3e2d64c1c6b9ff6c778ae0ee594c8";
13   };
15   # no tests
16   doCheck = false;
18   pythonImportsCheck = [
19     "plugnplay"
20   ];
22   meta = with lib; {
23     description = "A Generic plug-in system for python applications";
24     homepage = "https://github.com/daltonmatos/plugnplay";
25     license = licenses.gpl2Only;
26     maintainers = [ ];
27   };