about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2022-02-22 10:03:41 +0100
committerGitHub <noreply@github.com>2022-02-22 10:03:41 +0100
commitc24be60dbf4612a282a6c3085636cdab0be54d1a (patch)
tree46c9c91e074887f5a056d9724715cf63b176408e /pkgs
parent2eef4f11a123283bcd08851a644a3200745b6e76 (diff)
parentacc9c35df0f71723c5b67bbf2426f8a3dc786a96 (diff)
Merge pull request #161305 from r-ryantm/auto-update/python3.10-pyswitchbot
python310Packages.pyswitchbot: 0.13.2 -> 0.13.3
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/pyswitchbot/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pyswitchbot/default.nix b/pkgs/development/python-modules/pyswitchbot/default.nix
index 96037d5128389..38e7e2733ead5 100644
--- a/pkgs/development/python-modules/pyswitchbot/default.nix
+++ b/pkgs/development/python-modules/pyswitchbot/default.nix
@@ -2,18 +2,21 @@
 , bluepy
 , buildPythonPackage
 , fetchFromGitHub
+, pythonOlder
 }:
 
 buildPythonPackage rec {
   pname = "pyswitchbot";
-  version = "0.13.2";
+  version = "0.13.3";
   format = "setuptools";
 
+  disabled = pythonOlder "3.7";
+
   src = fetchFromGitHub {
     owner = "Danielhiversen";
     repo = "pySwitchbot";
     rev = version;
-    sha256 = "0pdmssd5dr364p3lrkxqryjc0rbaw6xp724zwqf3i87qs6ljs928";
+    hash = "sha256-Zgpnw4It3yyy9RQqt5SxeJXl1Z3J3Rp9baLfiw5Bgow=";
   };
 
   propagatedBuildInputs = [