Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / bitvavo-aio / default.nix
blob9dc561afd680fbad3bd3a9e66768ce8448a89191
1 { lib
2 , aiohttp
3 , buildPythonPackage
4 , fetchFromGitHub
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "bitvavo-aio";
10   version = "1.0.3";
11   format = "setuptools";
12   disabled = pythonOlder "3.6";
14   src = fetchFromGitHub {
15     owner = "cyberjunky";
16     repo = pname;
17     rev = version;
18     sha256 = "1d9nbbvv7xnkixj03sfhs2da5j3i2m7p73r7j1yb7b39zas2rbig";
19   };
21   propagatedBuildInputs = [
22     aiohttp
23   ];
25   # Project has no tests
26   doCheck = false;
28   pythonImportsCheck = [ "bitvavo" ];
30   meta = with lib; {
31     description = "Python client for Bitvavo crypto exchange API";
32     homepage = "https://github.com/cyberjunky/bitvavo-aio";
33     license = licenses.asl20;
34     maintainers = with maintainers; [ fab ];
35   };