92b3d6365d
GitOrigin-RevId: 412b9917cea092f3d39f9cd5dead4effd5bc4053
63 lines
1 KiB
Nix
63 lines
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
|
|
];
|
|
|
|
checkInputs = [
|
|
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 ];
|
|
};
|
|
}
|