48 lines
810 B
Nix
48 lines
810 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, certifi
|
|
, chardet
|
|
, fetchFromGitHub
|
|
, idna
|
|
, pythonOlder
|
|
, requests
|
|
, urllib3
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "frigidaire";
|
|
version = "0.18.4";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bm1549";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-U2ixBtigY15RzMNIeUK71uNOndUepK2kE/CTFwl855w=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
certifi
|
|
chardet
|
|
idna
|
|
requests
|
|
urllib3
|
|
];
|
|
|
|
# Project has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"frigidaire"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python API for the Frigidaire devices";
|
|
homepage = "https://github.com/bm1549/frigidaire";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|