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