Unverified Commit f185bbf8 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

python311Packages.bluetooth-data-tools: 1.9.1 -> 1.11.0
parents c2f3ec47 8c9adf84
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
{ 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
  ];