1 { lib, fetchPypi, buildPythonPackage, isPy3k, pythonOlder
3 , pandas, numpy, requests, inflection, python-dateutil, six, more-itertools, importlib-metadata
4 # test suite dependencies
5 , nose, unittest2, flake8, httpretty, mock, jsondate, parameterized, faker, factory_boy
6 # additional runtime dependencies are required on Python 2.x
7 , pyopenssl, ndg-httpsclient, pyasn1
10 buildPythonPackage rec {
18 sha256 = "0jr69fqxhzdmkfh3fxz0yp2kks2hkmixrscjjf59q2l7irglwhc4";
33 propagatedBuildInputs = [
41 ] ++ lib.optionals (!isPy3k) [
45 ] ++ lib.optionals (pythonOlder "3.8") [
49 pythonImportsCheck = [ "quandl" ];
52 description = "Quandl Python client library";
53 homepage = "https://github.com/quandl/quandl-python";
54 changelog = "https://github.com/quandl/quandl-python/blob/master/CHANGELOG.md";
55 license = licenses.mit;
56 maintainers = with maintainers; [ ilya-kolpakov ];