lol

python3Packages.jeepney: 0.7.1 -> 0.8.0

https://gitlab.com/takluyver/jeepney/-/blob/0.8/docs/release-notes.rst

authored by

Robert Schütz and committed by
Robert Schütz
b491eacf 9cfc5ba1

+10 -3
+10 -3
pkgs/development/python-modules/jeepney/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , pythonOlder 5 + , flit-core 5 6 , async-timeout 6 7 , dbus 7 8 , pytest ··· 13 14 14 15 buildPythonPackage rec { 15 16 pname = "jeepney"; 16 - version = "0.7.1"; 17 + version = "0.8.0"; 17 18 18 - disabled = pythonOlder "3.6"; 19 + disabled = pythonOlder "3.7"; 20 + 21 + format = "pyproject"; 19 22 20 23 src = fetchPypi { 21 24 inherit pname version; 22 - sha256 = "fa9e232dfa0c498bd0b8a3a73b8d8a31978304dcef0515adc859d4e096f96f4f"; 25 + sha256 = "5efe48d255973902f6badc3ce55e2aa6c5c3b3bc642059ef3a91247bcfcc5806"; 23 26 }; 27 + 28 + nativeBuildInputs = [ 29 + flit-core 30 + ]; 24 31 25 32 checkInputs = [ 26 33 async-timeout