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