Commit f95264db authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python313Packages.pydevccu: 0.1.11 -> 0.1.15

parent 1369df77
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -2,13 +2,14 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  orjson,
  pythonOlder,
  setuptools,
}:

buildPythonPackage rec {
  pname = "pydevccu";
  version = "0.1.11";
  version = "0.1.15";
  pyproject = true;

  disabled = pythonOlder "3.13";
@@ -17,7 +18,7 @@ buildPythonPackage rec {
    owner = "SukramJ";
    repo = "pydevccu";
    tag = version;
    hash = "sha256-Ar9KNOkiy60HTGKz8br701v8xF470dz1jv8sp/CZbpw=";
    hash = "sha256-wyv/ObAIZmkiytNSVNfbM8M5rkJc5czc1N6PJJd5A6Q=";
  };

  postPatch = ''
@@ -25,8 +26,12 @@ buildPythonPackage rec {
      --replace-fail "setuptools==75.6.0" setuptools
  '';

  pythonRelaxDeps = [ "orjson" ];

  build-system = [ setuptools ];

  dependencies = [ orjson ];

  # Module has no tests
  doCheck = false;