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

buildPythonPackage rec {
  pname = "hlk-sw16";
  version = "0.0.9";

  src = fetchFromGitHub {
    owner = "jameshilliard";
    repo = "hlk-sw16";
    rev = version;
    sha256 = "010s85nr6xn89i8yvdagg72a97dh1v2pyfqa33v76p9p8xbgh8dz";
  };

  # no tests implemented
  doCheck = false;

  pythonImportsCheck = [ "hlk_sw16" ];

  meta = with lib; {
    description = "Python client for HLK-SW16";
    homepage = "https://github.com/jameshilliard/hlk-sw16";
    license = licenses.mit;
    maintainers = with maintainers; [ dotlambda ];
  };
}