about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/hsh/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/hsh/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/hsh/default.nix32
1 files changed, 20 insertions, 12 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/hsh/default.nix b/nixpkgs/pkgs/development/python-modules/hsh/default.nix
index 2bc68d3aac9d..0b724c03d089 100644
--- a/nixpkgs/pkgs/development/python-modules/hsh/default.nix
+++ b/nixpkgs/pkgs/development/python-modules/hsh/default.nix
@@ -1,13 +1,14 @@
-{ buildPythonPackage
-, fetchFromGitHub
-, lib
-, commandlines
-, unittestCheckHook
-, pexpect
-, naked
-, nix-update-script
-, setuptools
-, wheel
+{
+  buildPythonPackage,
+  fetchFromGitHub,
+  lib,
+  commandlines,
+  unittestCheckHook,
+  pexpect,
+  naked,
+  nix-update-script,
+  setuptools,
+  wheel,
 }:
 
 buildPythonPackage rec {
@@ -24,9 +25,16 @@ buildPythonPackage rec {
 
   propagatedBuildInputs = [ commandlines ];
 
-  nativeBuildInputs = [ setuptools wheel ];
+  nativeBuildInputs = [
+    setuptools
+    wheel
+  ];
 
-  nativeCheckInputs = [ unittestCheckHook pexpect naked ];
+  nativeCheckInputs = [
+    unittestCheckHook
+    pexpect
+    naked
+  ];
 
   preCheck = "cd tests";