Merge pull request #123138 from fabaff/bitvavo-aio

python3Packages.bitvavo-aio: init at 1.0.3
This commit is contained in:
Fabian Affolter 2021-06-14 09:07:13 +02:00 committed by GitHub
commit 028f57303c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
}:
buildPythonPackage rec {
pname = "bitvavo-aio";
version = "1.0.3";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "cyberjunky";
repo = pname;
rev = version;
sha256 = "1d9nbbvv7xnkixj03sfhs2da5j3i2m7p73r7j1yb7b39zas2rbig";
};
propagatedBuildInputs = [
aiohttp
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "bitvavo" ];
meta = with lib; {
description = "Python client for Bitvavo crypto exchange API";
homepage = "https://github.com/cyberjunky/bitvavo-aio";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -1071,6 +1071,8 @@ in {
bitstruct = callPackage ../development/python-modules/bitstruct { };
bitvavo-aio = callPackage ../development/python-modules/bitvavo-aio { };
bjoern = callPackage ../development/python-modules/bjoern { };
bkcharts = callPackage ../development/python-modules/bkcharts { };