9 buildPythonPackage rec {
14 src = fetchFromGitHub {
16 repo = "python3-krakenex";
18 hash = "sha256-htldEds3vf9bjFkJAew0e0fHDLD15OTcVYybSmIp3DI=";
21 build-system = [ setuptools ];
23 dependencies = [ requests ];
25 # no tests implemented
28 pythonImportsCheck = [ "krakenex" ];
31 changelog = "https://github.com/veox/python3-krakenex/blob/${src.rev}/CHANGELOG.rst";
32 description = "Kraken.com cryptocurrency exchange API";
33 homepage = "https://github.com/veox/python3-krakenex";
34 license = licenses.lgpl3Plus;
35 maintainers = with maintainers; [ dotlambda ];