Commit 08a263dd authored by Robert Schütz's avatar Robert Schütz
Browse files

python311Packages.blebox-uniapi: use pyproject = true

parent c46bdb2e
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, aiohttp
, semver
, deepmerge
@@ -12,7 +13,7 @@
buildPythonPackage rec {
  pname = "blebox-uniapi";
  version = "2.2.2";
  format = "setuptools";
  pyproject = true;

  disabled = pythonOlder "3.9";

@@ -25,9 +26,13 @@ buildPythonPackage rec {

  postPatch = ''
    substituteInPlace setup.py \
      --replace "pytest-runner" ""
      --replace-fail "pytest-runner" ""
  '';

  nativeBuildInputs = [
    setuptools
  ];

  propagatedBuildInputs = [
    aiohttp
    semver