about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/rachiopy/default.nix
blob: 3fcf773e83d91d2c8e11c63fc970cfdf012b62d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ lib
, requests
, buildPythonPackage
, fetchFromGitHub
, jsonschema
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "rachiopy";
  version = "1.0.3";

  src = fetchFromGitHub {
    owner = "rfverbruggen";
    repo = pname;
    rev = version;
    sha256 = "1d5v9qc7ymzns3ivc5fzwxnxz9sjkhklh57cw05va95mpk5kdskc";
  };

  propagatedBuildInputs = [ requests ];

  checkInputs = [
    jsonschema
    pytestCheckHook
  ];

  pythonImportsCheck = [ "rachiopy" ];

  meta = with lib; {
    description = "Python client for Rachio Irrigation controller";
    homepage = "https://github.com/rfverbruggen/rachiopy";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };
}