forked from mirrors/nixpkgs
python3Packages.bond-api: init at 0.1.12
This commit is contained in:
parent
fda3bb6c21
commit
ef689d5c0f
39
pkgs/development/python-modules/bond-api/default.nix
Normal file
39
pkgs/development/python-modules/bond-api/default.nix
Normal file
|
@ -0,0 +1,39 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, aiohttp
|
||||
, aioresponses
|
||||
, pytest-asyncio
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "bond-api";
|
||||
version = "0.1.12";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "prystupa";
|
||||
repo = "bond-api";
|
||||
rev = "v${version}";
|
||||
sha256 = "0zqaqqadr4x4vmq28nfk5x67gfwqqfy19z0cgrpxlbbvxamccym0";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiohttp
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
aioresponses
|
||||
pytest-asyncio
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "bond_api" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Asynchronous Python wrapper library over Bond Local API";
|
||||
homepage = "https://github.com/prystupa/bond-api";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
|
@ -1135,6 +1135,8 @@ in {
|
|||
|
||||
boltztrap2 = callPackage ../development/python-modules/boltztrap2 { };
|
||||
|
||||
bond-api = callPackage ../development/python-modules/bond-api { };
|
||||
|
||||
booleanoperations = callPackage ../development/python-modules/booleanoperations { };
|
||||
|
||||
boolean-py = callPackage ../development/python-modules/boolean-py { };
|
||||
|
|
Loading…
Reference in a new issue