depot/third_party/nixpkgs/pkgs/development/python-modules/quandl/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

67 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
factory-boy,
faker,
fetchPypi,
httpretty,
importlib-metadata,
inflection,
jsondate,
mock,
more-itertools,
numpy,
pandas,
parameterized,
pytestCheckHook,
python-dateutil,
pythonOlder,
requests,
six,
}:
buildPythonPackage rec {
pname = "quandl";
version = "3.7.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit version;
pname = "Quandl";
hash = "sha256-bguC+8eGFhCzV3xTlyd8QiDgZe7g/tTkbNa2AhZVtkw=";
};
patches = [ ./pandas2-datetime-removal.patch ];
propagatedBuildInputs = [
pandas
numpy
requests
inflection
python-dateutil
six
more-itertools
] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ];
nativeCheckInputs = [
factory-boy
faker
httpretty
jsondate
mock
parameterized
pytestCheckHook
];
pythonImportsCheck = [ "quandl" ];
meta = with lib; {
description = "Quandl Python client library";
homepage = "https://github.com/quandl/quandl-python";
changelog = "https://github.com/quandl/quandl-python/blob/master/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ ilya-kolpakov ];
};
}