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

python312Packages.pydeconz: 118 -> 119 (#369496)

parents abfb7890 3c180c85
Loading
Loading
Loading
Loading
+6 −7
Original line number Diff line number Diff line
@@ -6,6 +6,7 @@
  fetchFromGitHub,
  orjson,
  pytest-aiohttp,
  pytest-cov-stub,
  pytestCheckHook,
  pythonOlder,
  setuptools,
@@ -13,7 +14,7 @@

buildPythonPackage rec {
  pname = "pydeconz";
  version = "118";
  version = "119";
  pyproject = true;

  disabled = pythonOlder "3.12";
@@ -22,19 +23,16 @@ buildPythonPackage rec {
    owner = "Kane610";
    repo = "deconz";
    rev = "refs/tags/v${version}";
    hash = "sha256-CbV/LGj09TfLYvaVGr2+LV76DRkz0kw7qsGbtL5A45g=";
    hash = "sha256-5138YzxutjyFsYyLGLTzeyCISuY8kV4WA0FLML+VeZQ=";
  };

  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace-fail "--cov=pydeconz --cov-report term-missing" "" \
      --replace-fail "setuptools==" "setuptools>=" \
      --replace-fail "setuptools==75.6.0" "setuptools" \
      --replace-fail "wheel==" "wheel>="
  '';

  build-system = [
    setuptools
  ];
  build-system = [ setuptools ];

  dependencies = [
    aiohttp
@@ -44,6 +42,7 @@ buildPythonPackage rec {
  nativeCheckInputs = [
    aioresponses
    pytest-aiohttp
    pytest-cov-stub
    pytestCheckHook
  ];