blob: 3ee94a68f02469ea7f5a7e11cd6495b07edeef0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "bitvavo-aio";
version = "1.0.3";
pyproject = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "cyberjunky";
repo = "bitvavo-aio";
tag = finalAttrs.version;
hash = "sha256-L64stPpprLN8kCePc08VcciimtDQ6QFkj9P2s/daNrU=";
};
build-system = [ setuptools ];
dependencies = [ aiohttp ];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "bitvavo" ];
meta = {
description = "Python client for Bitvavo crypto exchange API";
homepage = "https://github.com/cyberjunky/bitvavo-aio";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
})
|