about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/isoduration/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/isoduration/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/isoduration/default.nix25
1 files changed, 11 insertions, 14 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/isoduration/default.nix b/nixpkgs/pkgs/development/python-modules/isoduration/default.nix
index e37e44361a10..613f21105d9b 100644
--- a/nixpkgs/pkgs/development/python-modules/isoduration/default.nix
+++ b/nixpkgs/pkgs/development/python-modules/isoduration/default.nix
@@ -1,11 +1,12 @@
-{ lib
-, arrow
-, buildPythonPackage
-, fetchFromGitHub
-, hypothesis
-, isodate
-, pytestCheckHook
-, pythonOlder
+{
+  lib,
+  arrow,
+  buildPythonPackage,
+  fetchFromGitHub,
+  hypothesis,
+  isodate,
+  pytestCheckHook,
+  pythonOlder,
 }:
 
 buildPythonPackage rec {
@@ -22,9 +23,7 @@ buildPythonPackage rec {
     hash = "sha256-6LqsH+3V/K0s2YD1gvmelo+cCH+yCAmmyTYGhUegVdk=";
   };
 
-  propagatedBuildInputs = [
-    arrow
-  ];
+  propagatedBuildInputs = [ arrow ];
 
   nativeCheckInputs = [
     hypothesis
@@ -37,9 +36,7 @@ buildPythonPackage rec {
     "tests/test_benchmark.py"
   ];
 
-  pythonImportsCheck = [
-    "isoduration"
-  ];
+  pythonImportsCheck = [ "isoduration" ];
 
   meta = with lib; {
     description = "Library for operations with ISO 8601 durations";