Merge pull request #119060 from fabaff/pydanfoss-air
This commit is contained in:
commit
763b636e31
3 changed files with 30 additions and 1 deletions
27
pkgs/development/python-modules/pydanfossair/default.nix
Normal file
27
pkgs/development/python-modules/pydanfossair/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pydanfossair";
|
||||
version = "0.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "JonasPed";
|
||||
repo = "pydanfoss-air";
|
||||
rev = "v${version}";
|
||||
sha256 = "0950skga7x930whdn9f765x7fi8g6rr3zh99zpzaj8avjdwf096b";
|
||||
};
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "pydanfossair" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python interface for Danfoss Air HRV systems";
|
||||
homepage = "https://github.com/JonasPed/pydanfoss-air";
|
||||
license = with licenses; [ asl20 ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -147,7 +147,7 @@
|
|||
"cups" = ps: with ps; [ pycups ];
|
||||
"currencylayer" = ps: with ps; [ ];
|
||||
"daikin" = ps: with ps; [ pydaikin ];
|
||||
"danfoss_air" = ps: with ps; [ ]; # missing inputs: pydanfossair
|
||||
"danfoss_air" = ps: with ps; [ pydanfossair ];
|
||||
"darksky" = ps: with ps; [ python-forecastio ];
|
||||
"datadog" = ps: with ps; [ datadog ];
|
||||
"ddwrt" = ps: with ps; [ ];
|
||||
|
|
|
@ -5664,6 +5664,8 @@ in {
|
|||
|
||||
pydaikin = callPackage ../development/python-modules/pydaikin { };
|
||||
|
||||
pydanfossair = callPackage ../development/python-modules/pydanfossair { };
|
||||
|
||||
pydantic = callPackage ../development/python-modules/pydantic { };
|
||||
|
||||
pydash = callPackage ../development/python-modules/pydash { };
|
||||
|
|
Loading…
Reference in a new issue