Merge pull request #139426 from fabaff/pyflexit

python3Packages.pyflexit: init at 0.3
This commit is contained in:
Fabian Affolter 2021-09-28 22:45:21 +02:00 committed by GitHub
commit 1f92bfd9ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
}:
buildPythonPackage rec {
pname = "pyflexit";
version = "0.3";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "Sabesto";
repo = pname;
rev = version;
sha256 = "1ajlqr3z6zj4fyslqzpwpfkvh8xjx94wsznzij0vx0q7jp43bqig";
};
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "pyflexit" ];
meta = with lib; {
description = "Python library for Flexit A/C units";
homepage = "https://github.com/Sabesto/pyflexit";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -5561,6 +5561,8 @@ in {
pyfireservicerota = callPackage ../development/python-modules/pyfireservicerota { };
pyflexit = callPackage ../development/python-modules/pyflexit { };
pyflick = callPackage ../development/python-modules/pyflick { };
pyfreedompro = callPackage ../development/python-modules/pyfreedompro { };