about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/radiotherm/default.nix
blob: 9cefe8839c1cb4b3d375e040752fa2f76fbc1fed (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
{ lib
, buildPythonPackage
, fetchFromGitHub
, mock
, pytestCheckHook
, pythonOlder
}:

buildPythonPackage rec {
  pname = "radiotherm";
  version = "2.1.0";
  disabled = pythonOlder "3.6";

  src = fetchFromGitHub {
    owner = "mhrivnak";
    repo = pname;
    rev = version;
    sha256 = "0p37pc7l2malmjfkdlh4q2cfa6dqpsk1rah2j2xil0pj57ai6bks";
  };

  checkInputs = [
    mock
    pytestCheckHook
  ];

  pythonImportsCheck = [ "radiotherm" ];

  meta = with lib; {
    description = "Python library for Wifi Radiothermostat";
    homepage = "https://github.com/mhrivnak/radiotherm";
    license = with licenses; [ bsd3 ];
    maintainers = with maintainers; [ fab ];
  };
}