summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/motionblinds/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/motionblinds/default.nix')
-rw-r--r--pkgs/development/python-modules/motionblinds/default.nix25
1 files changed, 10 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/motionblinds/default.nix b/pkgs/development/python-modules/motionblinds/default.nix
index 7d8aa5a78400..ddf43e7c065b 100644
--- a/pkgs/development/python-modules/motionblinds/default.nix
+++ b/pkgs/development/python-modules/motionblinds/default.nix
@@ -1,9 +1,10 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, pycryptodomex
-, pythonOlder
-, setuptools
+{
+ lib,
+ buildPythonPackage,
+ fetchFromGitHub,
+ pycryptodomex,
+ pythonOlder,
+ setuptools,
}:
buildPythonPackage rec {
@@ -20,20 +21,14 @@ buildPythonPackage rec {
hash = "sha256-f5R58p6tMVqmXAjybae8qjeNI3vxtGJ7qxZOl9H5iKw=";
};
- nativeBuildInputs = [
- setuptools
- ];
+ nativeBuildInputs = [ setuptools ];
- propagatedBuildInputs = [
- pycryptodomex
- ];
+ propagatedBuildInputs = [ pycryptodomex ];
# Project has no tests
doCheck = false;
- pythonImportsCheck = [
- "motionblinds"
- ];
+ pythonImportsCheck = [ "motionblinds" ];
meta = with lib; {
description = "Python library for interfacing with Motion Blinds";