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