1{ lib
2, buildPythonPackage
3, fetchPypi
4, pythonOlder
5}:
6
7buildPythonPackage rec {
8 pname = "lightwave";
9 version = "0.24";
10 format = "setuptools";
11
12 disabled = pythonOlder "3.7";
13
14 src = fetchPypi {
15 inherit pname version;
16 hash = "sha256-l9hwdAKrpdXj/pkrgyiuhbPaGgT6tjfoOw/TBpR+k1I=";
17 };
18
19 pythonImportsCheck = [
20 "lightwave"
21 ];
22
23 # Requires phyiscal hardware
24 doCheck = false;
25
26 meta = with lib; {
27 description = "Module for interacting with LightwaveRF hubs";
28 homepage = "https://github.com/GeoffAtHome/lightwave";
29 license = licenses.mit;
30 maintainers = with maintainers; [ fab ];
31 };
32}