fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
62 lines
1.1 KiB
Nix
62 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
factory-boy,
|
|
fetchFromGitHub,
|
|
httpretty,
|
|
inflection,
|
|
jsondate,
|
|
mock,
|
|
more-itertools,
|
|
numpy,
|
|
pandas,
|
|
parameterized,
|
|
pytestCheckHook,
|
|
python-dateutil,
|
|
pythonOlder,
|
|
requests,
|
|
six,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "nasdaq-data-link";
|
|
version = "1.0.4";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Nasdaq";
|
|
repo = "data-link-python";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-Q3Ay9FpJsvSVu0WU2bxFyo3ODKP/ZUo3SqsBtOGrIIE=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
inflection
|
|
more-itertools
|
|
numpy
|
|
pandas
|
|
python-dateutil
|
|
requests
|
|
six
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
factory-boy
|
|
httpretty
|
|
jsondate
|
|
mock
|
|
parameterized
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "nasdaqdatalink" ];
|
|
|
|
meta = with lib; {
|
|
description = "Library for Nasdaq Data Link's RESTful API";
|
|
homepage = "https://github.com/Nasdaq/data-link-python";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|