about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyrfxtrx/default.nix
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2022-01-18 19:05:05 +0000
committerJonathan Ringer <jonringer@users.noreply.github.com>2022-02-09 19:50:43 -0800
commitc65dea71411175638ef4bb8ec994021c18d41efd (patch)
tree94cc44527a53474f48d29e1f8565f24c4773d0b1 /pkgs/development/python-modules/pyrfxtrx/default.nix
parent0fbe6cb466e9402ff9a440e891ae3866ac1b2ef0 (diff)
python3Packages.pyrfxtrx: 0.27.0 -> 0.27.1
https://github.com/Danielhiversen/pyRFXtrx/releases/tag/0.27.1
Diffstat (limited to 'pkgs/development/python-modules/pyrfxtrx/default.nix')
-rw-r--r--pkgs/development/python-modules/pyrfxtrx/default.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pyrfxtrx/default.nix b/pkgs/development/python-modules/pyrfxtrx/default.nix
index 6b63ac8f9fe2e..7e1fb8876cb0d 100644
--- a/pkgs/development/python-modules/pyrfxtrx/default.nix
+++ b/pkgs/development/python-modules/pyrfxtrx/default.nix
@@ -7,13 +7,13 @@
 
 buildPythonPackage rec {
   pname = "pyrfxtrx";
-  version = "0.27.0";
+  version = "0.27.1";
 
   src = fetchFromGitHub {
     owner = "Danielhiversen";
     repo = "pyRFXtrx";
     rev = version;
-    sha256 = "0nzgy56b2v3bnn9idlb67qkzj4cj5j9v1436ri1y305fqwjy48nm";
+    hash = "sha256-JBU/ApBumdW87fQqMAopzv+UV0f6VsHMiyNqG7BRLgo=";
   };
 
   propagatedBuildInputs = [
@@ -24,6 +24,11 @@ buildPythonPackage rec {
     pytestCheckHook
   ];
 
+  disabledTestPaths = [
+    # https://github.com/Danielhiversen/pyRFXtrx/issues/130
+    "tests/test_rollertrol.py"
+  ];
+
   meta = with lib; {
     description = "Library to communicate with the RFXtrx family of devices";
     homepage = "https://github.com/Danielhiversen/pyRFXtrx";