1{ lib
2, buildPythonPackage
3, fetchFromGitHub
4}:
5
6buildPythonPackage rec {
7 pname = "hlk-sw16";
8 version = "0.0.9";
9
10 src = fetchFromGitHub {
11 owner = "jameshilliard";
12 repo = "hlk-sw16";
13 rev = version;
14 sha256 = "010s85nr6xn89i8yvdagg72a97dh1v2pyfqa33v76p9p8xbgh8dz";
15 };
16
17 # no tests implemented
18 doCheck = false;
19
20 pythonImportsCheck = [ "hlk_sw16" ];
21
22 meta = with lib; {
23 description = "Python client for HLK-SW16";
24 homepage = "https://github.com/jameshilliard/hlk-sw16";
25 license = licenses.mit;
26 maintainers = with maintainers; [ dotlambda ];
27 };
28}