nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 aiohttp,
4 buildPythonPackage,
5 fetchFromGitHub,
6}:
7
8buildPythonPackage rec {
9 pname = "bitvavo-aio";
10 version = "1.0.3";
11 format = "setuptools";
12
13 src = fetchFromGitHub {
14 owner = "cyberjunky";
15 repo = "bitvavo-aio";
16 rev = version;
17 sha256 = "1d9nbbvv7xnkixj03sfhs2da5j3i2m7p73r7j1yb7b39zas2rbig";
18 };
19
20 propagatedBuildInputs = [ aiohttp ];
21
22 # Project has no tests
23 doCheck = false;
24
25 pythonImportsCheck = [ "bitvavo" ];
26
27 meta = {
28 description = "Python client for Bitvavo crypto exchange API";
29 homepage = "https://github.com/cyberjunky/bitvavo-aio";
30 license = lib.licenses.asl20;
31 maintainers = with lib.maintainers; [ fab ];
32 };
33}