mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
0215034f25
when they already rely on SRI hashes.
37 lines
730 B
Nix
37 lines
730 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, poetry-core
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "luxtronik";
|
|
version = "0.3.14";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Bouni";
|
|
repo = "python-luxtronik";
|
|
rev = version;
|
|
hash = "sha256-7TuvqOAb/MUumOF6BKTRLOJuvteqZPmFUXXsuwEpmOM=";
|
|
};
|
|
|
|
# Project has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"luxtronik"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python library to interact with Luxtronik heatpump controllers";
|
|
homepage = "https://github.com/Bouni/python-luxtronik";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|