nixpkgs/pkgs/development/python-modules/homeconnect/default.nix
2022-03-28 08:17:05 +02:00

41 lines
829 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, requests
, requests-oauthlib
, pythonOlder
}:
buildPythonPackage rec {
pname = "homeconnect";
version = "0.7.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-/h0dEVmP0R9tVt56mvu72Ksrvnuox1FA7BgrZMOhV6Q=";
};
propagatedBuildInputs = [
requests
requests-oauthlib
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [
"homeconnect"
];
meta = with lib; {
description = "Python client for the BSH Home Connect REST API";
homepage = "https://github.com/DavidMStraub/homeconnect";
changelog = "https://github.com/DavidMStraub/homeconnect/releases/tag/v${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}