Merge pull request #313607 from fabaff/alpha-vantage-remove

python312Packages.alpha-vantage: refactor
This commit is contained in:
Weijia Wang 2024-05-22 13:48:32 +02:00 committed by GitHub
commit 18109c0f8f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,27 +1,34 @@
{ lib
, aiohttp
, aioresponses
, buildPythonPackage
, fetchFromGitHub
, pandas
, pytestCheckHook
, requests
, requests-mock
{
lib,
aiohttp,
aioresponses,
buildPythonPackage,
fetchFromGitHub,
pandas,
pytestCheckHook,
requests,
requests-mock,
setuptools,
pythonOlder,
}:
buildPythonPackage rec {
pname = "alpha-vantage";
version = "2.3.1";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "RomelTorres";
repo = "alpha_vantage";
rev = version;
sha256 = "0cyw6zw7c7r076rmhnmg905ihwb9r7g511n6gdlph06v74pdls8d";
rev = "refs/tags/${version}";
hash = "sha256-DWnaLjnbAHhpe8aGUN7JaXEYC0ivWlizOSAfdvg33DM=";
};
propagatedBuildInputs = [
build-system = [ setuptools ];
dependencies = [
aiohttp
requests
];
@ -33,18 +40,16 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTestPaths = [
# Tests require network access
"test_alpha_vantage/test_integration_alphavantage.py"
"test_alpha_vantage/test_integration_alphavantage_async.py"
];
# https://github.com/RomelTorres/alpha_vantage/issues/344
doCheck = false;
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 ];
changelog = "https://github.com/RomelTorres/alpha_vantage/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}