python3Packages.venstarcolortouch: init at 0.13

This commit is contained in:
Fabian Affolter 2021-02-23 18:43:17 +01:00 committed by Jonathan Ringer
parent eb27b8efd7
commit 630b06d32d
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ lib
, buildPythonPackage
, fetchPypi
, requests
}:
buildPythonPackage rec {
pname = "venstarcolortouch";
version = "0.13";
src = fetchPypi {
inherit pname version;
sha256 = "04y9gmxb0vsmc5c930x9ziis5v83b29kfzsgjlww3pssj69lmw1s";
};
propagatedBuildInputs = [
requests
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "venstarcolortouch" ];
meta = with lib; {
description = "Python interface for Venstar ColorTouch thermostats Resources";
homepage = "https://github.com/hpeyerl/venstar_colortouch";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -8222,6 +8222,8 @@ in {
vega_datasets = callPackage ../development/python-modules/vega_datasets { }; vega_datasets = callPackage ../development/python-modules/vega_datasets { };
venstarcolortouch = callPackage ../development/python-modules/venstarcolortouch { };
venusian = callPackage ../development/python-modules/venusian { }; venusian = callPackage ../development/python-modules/venusian { };
verboselogs = callPackage ../development/python-modules/verboselogs { }; verboselogs = callPackage ../development/python-modules/verboselogs { };