Created
July 15, 2019 05:31
-
-
Save oscarcarlsson/9b7b14f6208522761814a841800232d5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ 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