diff options
Diffstat (limited to 'pkgs/development/python-modules/dacite/default.nix')
-rw-r--r-- | pkgs/development/python-modules/dacite/default.nix | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/pkgs/development/python-modules/dacite/default.nix b/pkgs/development/python-modules/dacite/default.nix index fca71b11a0e0..c6c5e01df213 100644 --- a/pkgs/development/python-modules/dacite/default.nix +++ b/pkgs/development/python-modules/dacite/default.nix @@ -1,8 +1,9 @@ -{ lib -, fetchFromGitHub -, buildPythonPackage -, pythonOlder -, pytestCheckHook +{ + lib, + fetchFromGitHub, + buildPythonPackage, + pythonOlder, + pytestCheckHook, }: buildPythonPackage rec { @@ -24,17 +25,11 @@ buildPythonPackage rec { --replace "--benchmark-autosave --benchmark-json=benchmark.json" "" ''; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; - pythonImportsCheck = [ - "dacite" - ]; + pythonImportsCheck = [ "dacite" ]; - disabledTestPaths = [ - "tests/performance" - ]; + disabledTestPaths = [ "tests/performance" ]; meta = with lib; { description = "Python helper to create data classes from dictionaries"; |