python3Packages.pyrfxtrx: init at 0.27.0

launchpad/nixpkgs/master
Robert Schütz 3 years ago
parent b93605da8f
commit ed63226298
  1. 33
      pkgs/development/python-modules/pyrfxtrx/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -0,0 +1,33 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pyserial
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pyrfxtrx";
version = "0.27.0";
src = fetchFromGitHub {
owner = "Danielhiversen";
repo = "pyRFXtrx";
rev = version;
sha256 = "0nzgy56b2v3bnn9idlb67qkzj4cj5j9v1436ri1y305fqwjy48nm";
};
propagatedBuildInputs = [
pyserial
];
checkInputs = [
pytestCheckHook
];
meta = with lib; {
description = "Library to communicate with the RFXtrx family of devices";
homepage = "https://github.com/Danielhiversen/pyRFXtrx";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ dotlambda ];
};
}

@ -5341,6 +5341,8 @@ in {
pynx584 = callPackage ../development/python-modules/pynx584 { };
pyrfxtrx = callPackage ../development/python-modules/pyrfxtrx { };
pyrogram = callPackage ../development/python-modules/pyrogram { };
pysbd = callPackage ../development/python-modules/pysbd { };

Loading…
Cancel
Save