diff --git a/pkgs/development/python-modules/alpha-vantage/default.nix b/pkgs/development/python-modules/alpha-vantage/default.nix new file mode 100644 index 000000000000..7a67f9d6b0d1 --- /dev/null +++ b/pkgs/development/python-modules/alpha-vantage/default.nix @@ -0,0 +1,49 @@ +{ 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 ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1ae54040a22f..9ceb2572202f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -397,6 +397,8 @@ in { alot = callPackage ../development/python-modules/alot { }; + alpha-vantage = callPackage ../development/python-modules/alpha-vantage { }; + altair = callPackage ../development/python-modules/altair { }; amazon_kclpy = callPackage ../development/python-modules/amazon_kclpy { };