python3Packages.jeepney: 0.7.0 -> 0.7.1

This commit is contained in:
Martin Weinelt 2021-08-26 21:32:36 +02:00
parent bb1109807f
commit 742667ac4f

View file

@ -2,6 +2,7 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pythonOlder , pythonOlder
, async-timeout
, dbus , dbus
, pytest , pytest
, pytest-trio , pytest-trio
@ -12,16 +13,17 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "jeepney"; pname = "jeepney";
version = "0.7.0"; version = "0.7.1";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "1237cd64c8f7ac3aa4b3f332c4d0fb4a8216f39eaa662ec904302d4d77de5a54"; sha256 = "fa9e232dfa0c498bd0b8a3a73b8d8a31978304dcef0515adc859d4e096f96f4f";
}; };
checkInputs = [ checkInputs = [
async-timeout
dbus dbus
pytest pytest
pytest-trio pytest-trio