summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/dpath/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/dpath/default.nix')
-rw-r--r--pkgs/development/python-modules/dpath/default.nix27
1 files changed, 12 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/dpath/default.nix b/pkgs/development/python-modules/dpath/default.nix
index 7ef15b2379c6..2a9409aa260a 100644
--- a/pkgs/development/python-modules/dpath/default.nix
+++ b/pkgs/development/python-modules/dpath/default.nix
@@ -1,12 +1,13 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, hypothesis
-, pythonOlder
-, mock
-, nose2
-, pytestCheckHook
-, setuptools
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
+ hypothesis,
+ pythonOlder,
+ mock,
+ nose2,
+ pytestCheckHook,
+ setuptools,
}:
buildPythonPackage rec {
@@ -21,9 +22,7 @@ buildPythonPackage rec {
hash = "sha256-8eB8cuhgXGqegLZLyPQnFN4Ip4nH3kF+ScP4ehlpLkc=";
};
- nativeBuildInputs = [
- setuptools
- ];
+ nativeBuildInputs = [ setuptools ];
nativeCheckInputs = [
hypothesis
@@ -32,9 +31,7 @@ buildPythonPackage rec {
pytestCheckHook
];
- pythonImportsCheck = [
- "dpath"
- ];
+ pythonImportsCheck = [ "dpath" ];
meta = with lib; {
description = "Python library for accessing and searching dictionaries via /slashed/paths ala xpath";