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

python311Packages.bluetooth-data-tools: 1.9.1 -> 1.11.0
This commit is contained in:
Fabian Affolter 2023-09-03 12:37:25 +02:00 committed by GitHub
commit f185bbf881
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, cryptography
, cython_3
, poetry-core
, pytestCheckHook
@ -10,7 +11,7 @@
buildPythonPackage rec {
pname = "bluetooth-data-tools";
version = "1.9.1";
version = "1.11.0";
format = "pyproject";
disabled = pythonOlder "3.9";
@ -19,7 +20,7 @@ buildPythonPackage rec {
owner = "Bluetooth-Devices";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-DLB2mBjHPVT2Fg2Kr0WUDuu5nqBCbdu525wAD3ERKV8=";
hash = "sha256-iyfk0OOJezNCNyqRCbR2cTTTdgdYQM6hExTngd/3CtA=";
};
# The project can build both an optimized cython version and an unoptimized
@ -32,6 +33,10 @@ buildPythonPackage rec {
setuptools
];
propagatedBuildInputs = [
cryptography
];
nativeCheckInputs = [
pytestCheckHook
];