summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/faker/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/faker/default.nix')
-rw-r--r--pkgs/development/python-modules/faker/default.nix31
1 files changed, 14 insertions, 17 deletions
diff --git a/pkgs/development/python-modules/faker/default.nix b/pkgs/development/python-modules/faker/default.nix
index c0944e473fe7..9f01cc2ed4f5 100644
--- a/pkgs/development/python-modules/faker/default.nix
+++ b/pkgs/development/python-modules/faker/default.nix
@@ -1,14 +1,15 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, freezegun
-, pillow
-, pytestCheckHook
-, python-dateutil
-, setuptools
-, text-unidecode
-, ukpostcodeparser
-, validators
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
+ freezegun,
+ pillow,
+ pytestCheckHook,
+ python-dateutil,
+ setuptools,
+ text-unidecode,
+ ukpostcodeparser,
+ validators,
}:
buildPythonPackage rec {
@@ -22,9 +23,7 @@ buildPythonPackage rec {
hash = "sha256-NLlHWBwrztNAw5s1+J2/rE81aTLP/4/ok73oVJA/Dm4=";
};
- nativeBuildInputs = [
- setuptools
- ];
+ nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
python-dateutil
@@ -40,9 +39,7 @@ buildPythonPackage rec {
];
# avoid tests which import random2, an abandoned library
- pytestFlagsArray = [
- "--ignore=tests/providers/test_ssn.py"
- ];
+ pytestFlagsArray = [ "--ignore=tests/providers/test_ssn.py" ];
pythonImportsCheck = [ "faker" ];
meta = with lib; {