nixpkgs/pkgs/development/python-modules/quandl/default.nix

58 lines
1.3 KiB
Nix
Raw Normal View History

{ 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
2017-11-30 12:48:46 +00:00
}:
buildPythonPackage rec {
pname = "quandl";
version = "3.5.0";
disabled = !isPy3k;
2017-11-30 12:48:46 +00:00
2018-11-29 13:56:40 +00:00
src = fetchPypi {
inherit version;
pname = "Quandl";
sha256 = "0zpw0nwqr4g56l9z4my0fahfgpcmfx74acbmv6nfx1dmq5ggraf3";
2017-11-30 12:48:46 +00:00
};
checkInputs = [
nose
unittest2
flake8
httpretty
mock
jsondate
2018-11-29 13:56:40 +00:00
parameterized
faker
factory_boy
2017-11-30 12:48:46 +00:00
];
propagatedBuildInputs = [
pandas
numpy
requests
inflection
python-dateutil
six
more-itertools
2019-11-24 19:14:31 +00:00
] ++ lib.optionals (!isPy3k) [
pyopenssl
2017-11-30 12:48:46 +00:00
ndg-httpsclient
pyasn1
2020-06-24 00:21:16 +01:00
] ++ lib.optionals (pythonOlder "3.8") [
importlib-metadata
2017-11-30 12:48:46 +00:00
];
pythonImportsCheck = [ "quandl" ];
meta = with lib; {
2017-11-30 12:48:46 +00:00
description = "Quandl Python client library";
homepage = "https://github.com/quandl/quandl-python";
license = licenses.mit;
maintainers = with maintainers; [ ilya-kolpakov ];
2017-11-30 12:48:46 +00:00
};
}