about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pylitterbot
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-11-17 10:26:08 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2021-11-17 10:26:08 +0100
commite8c3838f9d4da4569dd1f18fab71510bad65be78 (patch)
tree5d8c8c64a8b9fa3ad02882433de786e23df9b35e /pkgs/development/python-modules/pylitterbot
parent2203c418821037b4321a01aa7ac052e4a0da6359 (diff)
python3Packages.pylitterbot: 2021.10.1 -> 2021.11.0
Diffstat (limited to 'pkgs/development/python-modules/pylitterbot')
-rw-r--r--pkgs/development/python-modules/pylitterbot/default.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/pylitterbot/default.nix b/pkgs/development/python-modules/pylitterbot/default.nix
index 50afee3058cc9..be6d71aed5d36 100644
--- a/pkgs/development/python-modules/pylitterbot/default.nix
+++ b/pkgs/development/python-modules/pylitterbot/default.nix
@@ -11,14 +11,16 @@
 
 buildPythonPackage rec {
   pname = "pylitterbot";
-  version = "2021.10.1";
+  version = "2021.11.0";
+  format = "setuptools";
+
   disabled = pythonOlder "3.6";
 
   src = fetchFromGitHub {
     owner = "natekspencer";
     repo = pname;
     rev = version;
-    sha256 = "sha256-xE+H23AZR1OXfuLMvSuI7IeYKX7k2iEATHq5VheMLn4=";
+    sha256 = "sha256-HdIxi6RfdXBYEYFEcv/f9wAqKZg/MsEZd6mDYwE45to=";
   };
 
   propagatedBuildInputs = [
@@ -32,7 +34,9 @@ buildPythonPackage rec {
     pytestCheckHook
   ];
 
-  pythonImportsCheck = [ "pylitterbot" ];
+  pythonImportsCheck = [
+    "pylitterbot"
+  ];
 
   meta = with lib; {
     description = "Python package for controlling a Litter-Robot";