nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python310Packages.dbus-fast: 1.13.0 -> 1.15.1

authored by

Fabian Affolter and committed by
Jonathan Ringer
3f5056ef 1051f113

+7 -2
+7 -2
pkgs/development/python-modules/dbus-fast/default.nix
··· 1 1 { lib 2 + , async-timeout 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , poetry-core ··· 10 9 11 10 buildPythonPackage rec { 12 11 pname = "dbus-fast"; 13 - version = "1.13.0"; 12 + version = "1.15.1"; 14 13 format = "pyproject"; 15 14 16 15 disabled = pythonOlder "3.7"; ··· 19 18 owner = "Bluetooth-Devices"; 20 19 repo = pname; 21 20 rev = "v${version}"; 22 - hash = "sha256-SADUeLD4quPxKChf1A4ph1iI8zu7oCDg4nJNFl77f+k="; 21 + hash = "sha256-Uq+f0l9/W6PjP9MczF3VJNJicDgOnMrfXpOkHp7frVY="; 23 22 }; 24 23 25 24 nativeBuildInputs = [ 26 25 poetry-core 26 + ]; 27 + 28 + propagatedBuildInputs = [ 29 + async-timeout 27 30 ]; 28 31 29 32 checkInputs = [