ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / waterfurnace / default.nix
blob526066f1fa74af23d5b535e36c807a1c3c853e8f
1 { lib
2 , buildPythonPackage
3 , click
4 , fetchFromGitHub
5 , mock
6 , pytest-runner
7 , pytestCheckHook
8 , requests
9 , websocket-client
12 buildPythonPackage rec {
13   pname = "waterfurnace";
14   version = "1.1.0";
16   src = fetchFromGitHub {
17     owner = "sdague";
18     repo = pname;
19     rev = "v${version}";
20     sha256 = "1ba247fw1fvi7zy31zj2wbjq7fajrbxhp139cl9jj67rfvxfv8xf";
21   };
23   propagatedBuildInputs = [
24     click
25     pytest-runner
26     requests
27     websocket-client
28   ];
30   checkInputs = [
31     mock
32     pytestCheckHook
33   ];
35   pythonImportsCheck = [ "waterfurnace" ];
37   meta = with lib; {
38     description = "Python interface to waterfurnace geothermal systems";
39     homepage = "https://github.com/sdague/waterfurnace";
40     license = with licenses; [ asl20 ];
41     maintainers = with maintainers; [ fab ];
42   };