python3Packages.bond-api: 0.1.14 -> 0.1.15

This commit is contained in:
Fabian Affolter 2021-11-12 10:01:27 +01:00
parent 7d47dda267
commit 02a4ff26ca

View File

@ -5,17 +5,21 @@
, aioresponses , aioresponses
, pytest-asyncio , pytest-asyncio
, pytestCheckHook , pytestCheckHook
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "bond-api"; pname = "bond-api";
version = "0.1.14"; version = "0.1.15";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "prystupa"; owner = "prystupa";
repo = "bond-api"; repo = "bond-api";
rev = "v${version}"; rev = "v${version}";
sha256 = "0s7an6kbib1immrbwrh4pzj812zwf8kj3kgky5k3qwxzrj0iv6ak"; sha256 = "sha256-Uoz5knqRAtQkD7u/4oylXC60dR2ZU3AuMJNhmvB8fP4=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -28,7 +32,9 @@ buildPythonPackage rec {
pytestCheckHook pytestCheckHook
]; ];
pythonImportsCheck = [ "bond_api" ]; pythonImportsCheck = [
"bond_api"
];
meta = with lib; { meta = with lib; {
description = "Asynchronous Python wrapper library over Bond Local API"; description = "Asynchronous Python wrapper library over Bond Local API";