mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #145603 from fabaff/bump-bond-api
python3Packages.bond-api: 0.1.14 -> 0.1.15
This commit is contained in:
commit
d133b45e74
1 changed files with 9 additions and 3 deletions
|
@ -5,17 +5,21 @@
|
|||
, aioresponses
|
||||
, pytest-asyncio
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "bond-api";
|
||||
version = "0.1.14";
|
||||
version = "0.1.15";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "prystupa";
|
||||
repo = "bond-api";
|
||||
rev = "v${version}";
|
||||
sha256 = "0s7an6kbib1immrbwrh4pzj812zwf8kj3kgky5k3qwxzrj0iv6ak";
|
||||
sha256 = "sha256-Uoz5knqRAtQkD7u/4oylXC60dR2ZU3AuMJNhmvB8fP4=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
|
@ -28,7 +32,9 @@ buildPythonPackage rec {
|
|||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "bond_api" ];
|
||||
pythonImportsCheck = [
|
||||
"bond_api"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Asynchronous Python wrapper library over Bond Local API";
|
||||
|
|
Loading…
Reference in a new issue