about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/python-velbus/default.nix
blob: a02edfdc1f6d03853c84d4ef12a2799e7734836d (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
{ lib
, buildPythonPackage
, fetchFromGitHub
, pyserial
}:

buildPythonPackage rec {
  pname = "python-velbus";
  version = "2.1.2";

  src = fetchFromGitHub {
    owner = "thomasdelaet";
    repo = pname;
    rev = "v${version}";
    sha256 = "0dv7dsjp5li87ispdphaz7jd0a9xc328rxwawf2f58b1ii904xr4";
  };

  propagatedBuildInputs = [ pyserial ];

  # Project has not tests
  doCheck = false;
  pythonImportsCheck = [ "velbus" ];

  meta = with lib; {
    description = "Python library to control the Velbus home automation system";
    homepage = "https://github.com/thomasdelaet/python-velbus";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };
}