summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-01-02 11:07:34 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-01-02 11:07:34 +0100
commitff30fcecfe8871b42980d484ea606ce105b51ab7 (patch)
treeb5bd7f3e1f8762c198e348106fc141643c45b6af /pkgs/development/python-modules
parent00956f5b7301eb6f9316d7b52b810c229146e2fe (diff)
downloadnixpkgs-ff30fcecfe8871b42980d484ea606ce105b51ab7.tar
nixpkgs-ff30fcecfe8871b42980d484ea606ce105b51ab7.tar.gz
nixpkgs-ff30fcecfe8871b42980d484ea606ce105b51ab7.tar.bz2
nixpkgs-ff30fcecfe8871b42980d484ea606ce105b51ab7.tar.lz
nixpkgs-ff30fcecfe8871b42980d484ea606ce105b51ab7.tar.xz
nixpkgs-ff30fcecfe8871b42980d484ea606ce105b51ab7.tar.zst
nixpkgs-ff30fcecfe8871b42980d484ea606ce105b51ab7.zip
pythonPackages.quandl: Cleanup, fix inputs
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/quandl/default.nix19
1 files changed, 8 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/quandl/default.nix b/pkgs/development/python-modules/quandl/default.nix
index 33fc54241d9..56b80a4676b 100644
--- a/pkgs/development/python-modules/quandl/default.nix
+++ b/pkgs/development/python-modules/quandl/default.nix
@@ -1,11 +1,10 @@
-{
-  lib, fetchPypi, buildPythonPackage, isPy3k, pythonOlder,
-  # runtime dependencies
-  pandas, numpy, requests, inflection, python-dateutil, six, more-itertools, importlib-metadata,
-  # test suite dependencies
-  nose, unittest2, flake8, httpretty, mock, jsondate, parameterized, faker, factory_boy,
-  # additional runtime dependencies are required on Python 2.x
-  pyOpenSSL ? null, ndg-httpsclient ? null, pyasn1 ? null
+{ lib, fetchPypi, buildPythonPackage, isPy3k, pythonOlder
+# runtime dependencies
+, pandas, numpy, requests, inflection, python-dateutil, six, more-itertools, importlib-metadata
+# test suite dependencies
+, nose, unittest2, flake8, httpretty, mock, jsondate, parameterized, faker, factory_boy
+# additional runtime dependencies are required on Python 2.x
+, pyopenssl, ndg-httpsclient, pyasn1
 }:
 
 buildPythonPackage rec {
@@ -19,8 +18,6 @@ buildPythonPackage rec {
     sha256 = "0zpw0nwqr4g56l9z4my0fahfgpcmfx74acbmv6nfx1dmq5ggraf3";
   };
 
-  doCheck = true;
-
   checkInputs = [
     nose
     unittest2
@@ -42,7 +39,7 @@ buildPythonPackage rec {
     six
     more-itertools
   ] ++ lib.optionals (!isPy3k) [
-    pyOpenSSL
+    pyopenssl
     ndg-httpsclient
     pyasn1
   ] ++ lib.optionals (pythonOlder "3.8") [