Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / py-aosmith / default.nix
blobbce96a1d320ba33eac7203ceddd14737ef04e914
1 { lib
2 , buildPythonPackage
3 , pythonOlder
4 , fetchFromGitHub
5 , poetry-core
6 , aiohttp
7 , tenacity
8 }:
10 buildPythonPackage rec {
11   pname = "py-aosmith";
12   version = "1.0.8";
13   pyproject = true;
15   disabled = pythonOlder "3.10";
17   src = fetchFromGitHub {
18     owner = "bdr99";
19     repo = "py-aosmith";
20     rev = "refs/tags/${version}";
21     hash = "sha256-TjBjyWxBPrZEY/o1DZ+GiFTHTW37WwFN0oyJSyGru28=";
22   };
24   nativeBuildInputs = [
25     poetry-core
26   ];
28   propagatedBuildInputs = [
29     aiohttp
30     tenacity
31   ];
33   pythonImportsCheck = [ "py_aosmith" ];
35   # upstream has no tests
36   doCheck = false;
38   meta = {
39     description = "Python client library for A. O. Smith water heaters";
40     homepage = "https://github.com/bdr99/py-aosmith";
41     license = lib.licenses.mit;
42     maintainers = with lib.maintainers; [ dotlambda ];
43   };