mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
2d14a88f53
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-quandl/versions
56 lines
1.1 KiB
Nix
56 lines
1.1 KiB
Nix
{
|
|
lib, fetchPypi, buildPythonPackage, isPy3k,
|
|
# runtime dependencies
|
|
pandas, numpy, requests, inflection, python-dateutil, six, more-itertools,
|
|
# 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
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "quandl";
|
|
version = "3.4.6";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "Quandl";
|
|
sha256 = "15b58nj45bdax0aha6kwjz5pxj3bz8bs6ajwxqp9r89j13xxn94g";
|
|
};
|
|
|
|
doCheck = true;
|
|
|
|
checkInputs = [
|
|
nose
|
|
unittest2
|
|
flake8
|
|
httpretty
|
|
mock
|
|
jsondate
|
|
parameterized
|
|
faker
|
|
factory_boy
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
pandas
|
|
numpy
|
|
requests
|
|
inflection
|
|
python-dateutil
|
|
six
|
|
more-itertools
|
|
] ++ lib.optional (!isPy3k) [
|
|
pyOpenSSL
|
|
ndg-httpsclient
|
|
pyasn1
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/quandl/quandl-python";
|
|
description = "Quandl Python client library";
|
|
maintainers = [ lib.maintainers.ilya-kolpakov ];
|
|
license = lib.licenses.mit;
|
|
};
|
|
}
|