fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
31 lines
627 B
Nix
31 lines
627 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "lightwave";
|
|
version = "0.24";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-l9hwdAKrpdXj/pkrgyiuhbPaGgT6tjfoOw/TBpR+k1I=";
|
|
};
|
|
|
|
pythonImportsCheck = [ "lightwave" ];
|
|
|
|
# Requires phyiscal hardware
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Module for interacting with LightwaveRF hubs";
|
|
homepage = "https://github.com/GeoffAtHome/lightwave";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|