Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / envoy-utils / default.nix
blobff795aa62e3ded26117fceef921aa3d9333b6f6c
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 , zeroconf
6 }:
8 buildPythonPackage rec {
9   pname = "envoy-utils";
10   version = "0.0.1";
11   format = "setuptools";
13   disabled = pythonOlder "3.8";
15   src = fetchPypi {
16     pname = "envoy_utils";
17     inherit version;
18     sha256 = "13zn0d6k2a4nls9vp8cs0w07bgg4138vz18cadjadhm8p6r3bi0c";
19   };
21   propagatedBuildInputs = [
22     zeroconf
23   ];
25   # Project has no tests
26   doCheck = false;
28   pythonImportsCheck = [ "envoy_utils" ];
30   meta = with lib; {
31     description = "Python utilities for the Enphase Envoy";
32     homepage = "https://pypi.org/project/envoy-utils/";
33     license = licenses.gpl3Plus;
34     maintainers = with maintainers; [ fab ];
35   };