Merge pull request #252907 from fabaff/bluetooth-data-tools-bump

python311Packages.bluetooth-data-tools: 1.9.1 -> 1.11.0

authored by

Fabian Affolter and committed by
GitHub
f185bbf8 c2f3ec47

+7 -2
+7 -2
pkgs/development/python-modules/bluetooth-data-tools/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 + , cryptography 4 5 , cython_3 5 6 , poetry-core 6 7 , pytestCheckHook ··· 10 11 11 12 buildPythonPackage rec { 12 13 pname = "bluetooth-data-tools"; 13 - version = "1.9.1"; 14 + version = "1.11.0"; 14 15 format = "pyproject"; 15 16 16 17 disabled = pythonOlder "3.9"; ··· 19 20 owner = "Bluetooth-Devices"; 20 21 repo = pname; 21 22 rev = "refs/tags/v${version}"; 22 - hash = "sha256-DLB2mBjHPVT2Fg2Kr0WUDuu5nqBCbdu525wAD3ERKV8="; 23 + hash = "sha256-iyfk0OOJezNCNyqRCbR2cTTTdgdYQM6hExTngd/3CtA="; 23 24 }; 24 25 25 26 # The project can build both an optimized cython version and an unoptimized ··· 30 31 cython_3 31 32 poetry-core 32 33 setuptools 34 + ]; 35 + 36 + propagatedBuildInputs = [ 37 + cryptography 33 38 ]; 34 39 35 40 nativeCheckInputs = [