about summary refs log tree commit diff
path: root/pkgs/development/python-modules/measurement/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/measurement/default.nix')
-rw-r--r--pkgs/development/python-modules/measurement/default.nix27
1 files changed, 12 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/measurement/default.nix b/pkgs/development/python-modules/measurement/default.nix
index c16b03d8e829..d69e8d4532dc 100644
--- a/pkgs/development/python-modules/measurement/default.nix
+++ b/pkgs/development/python-modules/measurement/default.nix
@@ -1,12 +1,13 @@
-{ lib
-, fetchFromGitHub
-, buildPythonPackage
-, isPy3k
-, flit-core
-, flit-scm
-, sympy
-, pytestCheckHook
-, sphinx
+{
+  lib,
+  fetchFromGitHub,
+  buildPythonPackage,
+  isPy3k,
+  flit-core,
+  flit-scm,
+  sympy,
+  pytestCheckHook,
+  sphinx,
 }:
 
 buildPythonPackage rec {
@@ -34,13 +35,9 @@ buildPythonPackage rec {
       --replace "--cov=measurement" ""
   '';
 
-  propagatedBuildInputs = [
-    sympy
-  ];
+  propagatedBuildInputs = [ sympy ];
 
-  nativeCheckInputs = [
-    pytestCheckHook
-  ];
+  nativeCheckInputs = [ pytestCheckHook ];
 
   meta = with lib; {
     description = "Use and manipulate unit-aware measurement objects in Python";