Merge pull request #139426 from fabaff/pyflexit
python3Packages.pyflexit: init at 0.3
This commit is contained in:
commit
1f92bfd9ee
2 changed files with 34 additions and 0 deletions
32
pkgs/development/python-modules/pyflexit/default.nix
Normal file
32
pkgs/development/python-modules/pyflexit/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue