Merge pull request #118919 from fabaff/omnilogic
This commit is contained in:
commit
cbdbd24665
39
pkgs/development/python-modules/omnilogic/default.nix
Normal file
39
pkgs/development/python-modules/omnilogic/default.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{ lib
|
||||
, aiohttp
|
||||
, xmltodict
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "omnilogic";
|
||||
version = "0.4.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "djtimca";
|
||||
repo = "omnilogic-api";
|
||||
rev = "v${version}";
|
||||
sha256 = "19pmbykq0mckk23aj33xbhg3gjx557xy9a481mp6pkmihf2lsc8z";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiohttp
|
||||
xmltodict
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
# Is not used but still present in setup.py
|
||||
substituteInPlace setup.py --replace "'config'," ""
|
||||
'';
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "omnilogic" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python interface for the Hayward Omnilogic pool control system";
|
||||
homepage = "https://github.com/djtimca/omnilogic-api";
|
||||
license = with licenses; [ asl20 ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -581,7 +581,7 @@
|
||||
"oem" = ps: with ps; [ ]; # missing inputs: oemthermostat
|
||||
"ohmconnect" = ps: with ps; [ defusedxml ];
|
||||
"ombi" = ps: with ps; [ ]; # missing inputs: pyombi
|
||||
"omnilogic" = ps: with ps; [ ]; # missing inputs: omnilogic
|
||||
"omnilogic" = ps: with ps; [ omnilogic ];
|
||||
"onboarding" = ps: with ps; [ aiohttp-cors pillow ];
|
||||
"ondilo_ico" = ps: with ps; [ aiohttp-cors ]; # missing inputs: ondilo
|
||||
"onewire" = ps: with ps; [ ]; # missing inputs: pi1wire pyownet
|
||||
|
@ -286,6 +286,7 @@ in with py.pkgs; buildPythonApplication rec {
|
||||
"notify"
|
||||
"notion"
|
||||
"number"
|
||||
"omnilogic"
|
||||
"ozw"
|
||||
"panel_custom"
|
||||
"panel_iframe"
|
||||
|
@ -4801,6 +4801,8 @@ in {
|
||||
|
||||
omegaconf = callPackage ../development/python-modules/omegaconf { };
|
||||
|
||||
omnilogic = callPackage ../development/python-modules/omnilogic { };
|
||||
|
||||
onkyo-eiscp = callPackage ../development/python-modules/onkyo-eiscp { };
|
||||
|
||||
onnx = callPackage ../development/python-modules/onnx { };
|
||||
|
Loading…
Reference in New Issue
Block a user