summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pytrends/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pytrends/default.nix')
-rw-r--r--pkgs/development/python-modules/pytrends/default.nix36
1 files changed, 19 insertions, 17 deletions
diff --git a/pkgs/development/python-modules/pytrends/default.nix b/pkgs/development/python-modules/pytrends/default.nix
index d52436348ad7..c9e20859086b 100644
--- a/pkgs/development/python-modules/pytrends/default.nix
+++ b/pkgs/development/python-modules/pytrends/default.nix
@@ -1,15 +1,16 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, setuptools
-, setuptools-scm
-, wheel
-, requests
-, lxml
-, pandas
-, pytestCheckHook
-, pytest-recording
-, responses
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
+ setuptools,
+ setuptools-scm,
+ wheel,
+ requests,
+ lxml,
+ pandas,
+ pytestCheckHook,
+ pytest-recording,
+ responses,
}:
buildPythonPackage rec {
@@ -33,7 +34,11 @@ buildPythonPackage rec {
wheel
];
- propagatedBuildInputs = [ requests lxml pandas ];
+ propagatedBuildInputs = [
+ requests
+ lxml
+ pandas
+ ];
nativeCheckInputs = [
pytestCheckHook
@@ -41,9 +46,7 @@ buildPythonPackage rec {
responses
];
- pytestFlagsArray = [
- "--block-network"
- ];
+ pytestFlagsArray = [ "--block-network" ];
pythonImportsCheck = [ "pytrends" ];
@@ -53,5 +56,4 @@ buildPythonPackage rec {
license = [ licenses.asl20 ];
maintainers = [ maintainers.mmahut ];
};
-
}