lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python311Packages.adb-shell: 0.4.3 -> 0.4.4

Diff: https://github.com/JeffLIrion/adb_shell/compare/v0.4.3...v0.4.4

+5 -5
+5 -5
pkgs/development/python-modules/adb-shell/default.nix
··· 1 1 { lib 2 2 , aiofiles 3 + , async-timeout 3 4 , buildPythonPackage 4 5 , cryptography 5 6 , fetchFromGitHub ··· 15 16 16 17 buildPythonPackage rec { 17 18 pname = "adb-shell"; 18 - version = "0.4.3"; 19 + version = "0.4.4"; 19 20 format = "setuptools"; 20 21 21 22 disabled = !isPy3k; ··· 24 25 owner = "JeffLIrion"; 25 26 repo = "adb_shell"; 26 27 rev = "v${version}"; 27 - hash = "sha256-+RU3nyJpHq0r/9erEbjUILpwIPWq14HdOX7LkSxySs4="; 28 + hash = "sha256-pOkFUh3SEu/ch9R1lVoQn50nufQp8oI+D4/+Ybal5CA="; 28 29 }; 29 30 30 31 propagatedBuildInputs = [ ··· 36 37 passthru.optional-dependencies = { 37 38 async = [ 38 39 aiofiles 40 + async-timeout 39 41 ]; 40 42 usb = [ 41 43 libusb1 ··· 46 48 mock 47 49 pycryptodome 48 50 pytestCheckHook 49 - ] 50 - ++ passthru.optional-dependencies.async 51 - ++ passthru.optional-dependencies.usb; 51 + ] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies); 52 52 53 53 pythonImportsCheck = [ 54 54 "adb_shell"