python3Packages.krakenex: init at 2.1.0
This commit is contained in:
parent
538d123459
commit
9be67d830e
2 changed files with 35 additions and 0 deletions
33
pkgs/development/python-modules/krakenex/default.nix
Normal file
33
pkgs/development/python-modules/krakenex/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, requests
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "krakenex";
|
||||
version = "2.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "veox";
|
||||
repo = "python3-krakenex";
|
||||
rev = "v${version}";
|
||||
sha256 = "0j8qmpk6lm57h80i5njhgvm1qnxllm18dlqxfd4kyxdb93si4z2p";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
requests
|
||||
];
|
||||
|
||||
# no tests implemented
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "krakenex" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Kraken.com cryptocurrency exchange API";
|
||||
homepage = "https://github.com/veox/python3-krakenex";
|
||||
license = licenses.lgpl3Plus;
|
||||
maintainers = with maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
|
@ -3882,6 +3882,8 @@ in {
|
|||
|
||||
korean-lunar-calendar = callPackage ../development/python-modules/korean-lunar-calendar { };
|
||||
|
||||
krakenex = callPackage ../development/python-modules/krakenex { };
|
||||
|
||||
kubernetes = callPackage ../development/python-modules/kubernetes { };
|
||||
|
||||
labelbox = callPackage ../development/python-modules/labelbox { };
|
||||
|
|
Loading…
Reference in a new issue