evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / pyws66i / default.nix
blob47df29289202002360e23c4f8733c5ac7fa0c799
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pytestCheckHook,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "pyws66i";
11   version = "1.1";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchFromGitHub {
17     owner = "ssaenger";
18     repo = pname;
19     rev = "v${version}";
20     hash = "sha256-NTL2+xLqSNsz4YdUTwr0nFjhm1NNgB8qDnWSoE2sizY=";
21   };
23   nativeCheckInputs = [ pytestCheckHook ];
25   pythonImportsCheck = [ "pyws66i" ];
27   meta = with lib; {
28     description = "Library to interface with WS66i 6-zone amplifier";
29     homepage = "https://github.com/bigmoby/pyialarmxr";
30     license = licenses.mit;
31     maintainers = with maintainers; [ fab ];
32   };