python313Packages.pydevccu: 0.1.11 -> 0.1.15

Changelog: https://github.com/SukramJ/pydevccu/releases/tag/0.1.15
This commit is contained in:
Fabian Affolter 2025-08-16 21:35:01 +02:00
parent 1369df773d
commit f95264db59

View File

@ -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;