aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/async-upnp-client/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/python-modules/async-upnp-client/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/python-modules/async-upnp-client/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/python-modules/async-upnp-client/default.nix b/infra/libkookie/nixpkgs/pkgs/development/python-modules/async-upnp-client/default.nix
index b1ed1c45f85a..6697cb5d13e8 100644
--- a/infra/libkookie/nixpkgs/pkgs/development/python-modules/async-upnp-client/default.nix
+++ b/infra/libkookie/nixpkgs/pkgs/development/python-modules/async-upnp-client/default.nix
@@ -1,17 +1,17 @@
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder
, voluptuous, aiohttp, async-timeout, python-didl-lite, defusedxml
-, pytest, pytest-asyncio }:
+, pytest_6, pytest-asyncio }:
buildPythonPackage rec {
pname = "async-upnp-client";
- version = "0.14.14";
+ version = "0.14.15";
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "StevenLooman";
repo = "async_upnp_client";
rev = version;
- sha256 = "1ysj72l4z78h427ar95x7af0jw0xq1cbca0k8b34vqyyhgs8wc6y";
+ sha256 = "1mr65msdc51wq7326z3q41x79yi9dsmcjrmyzkgj9h9vgpxdk2nw";
};
propagatedBuildInputs = [
@@ -23,7 +23,7 @@ buildPythonPackage rec {
];
checkInputs = [
- pytest
+ pytest_6
pytest-asyncio
];