nixpkgs/pkgs/development/python-modules/alpha-vantage/default.nix
2021-06-26 14:58:19 -07:00

50 lines
993 B
Nix

{ lib
, aiohttp
, aioresponses
, buildPythonPackage
, fetchFromGitHub
, pandas
, pytestCheckHook
, requests
, requests-mock
}:
buildPythonPackage rec {
pname = "alpha-vantage";
version = "2.3.1";
src = fetchFromGitHub {
owner = "RomelTorres";
repo = "alpha_vantage";
rev = version;
sha256 = "0cyw6zw7c7r076rmhnmg905ihwb9r7g511n6gdlph06v74pdls8d";
};
propagatedBuildInputs = [
aiohttp
requests
];
checkInputs = [
aioresponses
requests-mock
pandas
pytestCheckHook
];
disabledTestPaths = [
# Tests require network access
"test_alpha_vantage/test_integration_alphavantage.py"
"test_alpha_vantage/test_integration_alphavantage_async.py"
];
pythonImportsCheck = [ "alpha_vantage" ];
meta = with lib; {
description = "Python module for the Alpha Vantage API";
homepage = "https://github.com/RomelTorres/alpha_vantage";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}