python3Packages.pyflexit: init at 0.3
This commit is contained in:
parent
f725095581
commit
2f54d52e86
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -5539,6 +5539,8 @@ in {
|
||||||
|
|
||||||
pyfireservicerota = callPackage ../development/python-modules/pyfireservicerota { };
|
pyfireservicerota = callPackage ../development/python-modules/pyfireservicerota { };
|
||||||
|
|
||||||
|
pyflexit = callPackage ../development/python-modules/pyflexit { };
|
||||||
|
|
||||||
pyflick = callPackage ../development/python-modules/pyflick { };
|
pyflick = callPackage ../development/python-modules/pyflick { };
|
||||||
|
|
||||||
pyfreedompro = callPackage ../development/python-modules/pyfreedompro { };
|
pyfreedompro = callPackage ../development/python-modules/pyfreedompro { };
|
||||||
|
|
Loading…
Reference in a new issue