about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorThomas Heijligen <src@posteo.de>2024-02-12 21:22:59 +0000
committerMartin Weinelt <mweinelt@users.noreply.github.com>2024-02-27 12:19:46 +0100
commitad5d43894986b33c4a8861ae378715c430bf1f99 (patch)
treee3cff8cb014598d36b6d7a885f5ac6b27a05171c /pkgs
parentc44815411ae47dd8bbbb92d60c3a83abff28a9f3 (diff)
python3Packages.e3-core: Update formating
Use single line for list items
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/e3-core/default.nix19
1 files changed, 15 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/e3-core/default.nix b/pkgs/development/python-modules/e3-core/default.nix
index 95759b6a096c0..0fea7959c9f34 100644
--- a/pkgs/development/python-modules/e3-core/default.nix
+++ b/pkgs/development/python-modules/e3-core/default.nix
@@ -34,16 +34,27 @@ buildPythonPackage rec {
     hash = "sha256-4StHOJldfeqApdF6D14Euzg9HvZ2e7G4/OQ0UrEbEIw=";
   };
 
-  patches = [ ./0001-use-distro-over-ld.patch ];
+  patches = [
+    ./0001-use-distro-over-ld.patch
+  ];
 
-  nativeBuildInputs = [ setuptools ];
+  nativeBuildInputs = [
+    setuptools
+  ];
 
   propagatedBuildInputs = [
-    colorama pyyaml python-dateutil requests requests-toolbelt tqdm stevedore
+    colorama
+    pyyaml
+    python-dateutil
+    requests
+    requests-toolbelt
+    tqdm
+    stevedore
   ] ++ lib.optional stdenv.isLinux [
     # See setup.py:24. These are required only on Linux. Darwin has its own set
     # of requirements.
-    psutil distro
+    psutil
+    distro
   ];
 
   pythonImportsCheck = [ "e3" ];