python3Packages.envoy-utils: init at 0.0.1
This commit is contained in:
parent
ae93ef67ce
commit
14cd4bb1dd
2 changed files with 37 additions and 0 deletions
35
pkgs/development/python-modules/envoy-utils/default.nix
Normal file
35
pkgs/development/python-modules/envoy-utils/default.nix
Normal file
|
@ -0,0 +1,35 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, zeroconf
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "envoy-utils";
|
||||
version = "0.0.1";
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "envoy_utils";
|
||||
inherit version;
|
||||
sha256 = "13zn0d6k2a4nls9vp8cs0w07bgg4138vz18cadjadhm8p6r3bi0c";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
zeroconf
|
||||
];
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "envoy_utils" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python utilities for the Enphase Envoy";
|
||||
homepage = "https://pypi.org/project/envoy-utils/";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -2366,6 +2366,8 @@ in {
|
|||
|
||||
envoy-reader = callPackage ../development/python-modules/envoy-reader { };
|
||||
|
||||
envoy-utils = callPackage ../development/python-modules/envoy-utils { };
|
||||
|
||||
enzyme = callPackage ../development/python-modules/enzyme { };
|
||||
|
||||
epc = callPackage ../development/python-modules/epc { };
|
||||
|
|
Loading…
Reference in a new issue