Skip to content

Instantly share code, notes, and snippets.

@oscarcarlsson
Created July 15, 2019 05:31
Show Gist options
  • Save oscarcarlsson/9b7b14f6208522761814a841800232d5 to your computer and use it in GitHub Desktop.
Save oscarcarlsson/9b7b14f6208522761814a841800232d5 to your computer and use it in GitHub Desktop.
{ lib
, buildPythonPackage
, fetchPypi
, pyserial
}:
buildPythonPackage rec {
pname = "pyRFXtrx";
version = "0.23.0";
src = fetchPypi {
pname = "pyRFXtrx";
inherit version;
sha256 = "8bd06ab5f84d29893776ab3cfd752efd5733e2c23d1873a2c629d12ab170df8a";
};
propagatedBuildInputs = [
pyserial
];
meta = with lib; {
description = "A Python library to communicate with the RFXtrx family of devices from RFXcom";
homepage = https://github.com/Danielhiversen/pyRFXtrx;
license = licenses.gpl3;
# maintainers = [ maintainers. ];
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment