python313Packages.pydevccu: 0.1.11 -> 0.1.15 (#434302)

This commit is contained in:
Fabian Affolter 2025-08-19 15:25:43 +02:00 committed by GitHub
commit b8efb3e3c9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,13 +2,14 @@
lib, lib,
buildPythonPackage, buildPythonPackage,
fetchFromGitHub, fetchFromGitHub,
orjson,
pythonOlder, pythonOlder,
setuptools, setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pydevccu"; pname = "pydevccu";
version = "0.1.11"; version = "0.1.15";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.13"; disabled = pythonOlder "3.13";
@ -17,7 +18,7 @@ buildPythonPackage rec {
owner = "SukramJ"; owner = "SukramJ";
repo = "pydevccu"; repo = "pydevccu";
tag = version; tag = version;
hash = "sha256-Ar9KNOkiy60HTGKz8br701v8xF470dz1jv8sp/CZbpw="; hash = "sha256-wyv/ObAIZmkiytNSVNfbM8M5rkJc5czc1N6PJJd5A6Q=";
}; };
postPatch = '' postPatch = ''
@ -25,8 +26,12 @@ buildPythonPackage rec {
--replace-fail "setuptools==75.6.0" setuptools --replace-fail "setuptools==75.6.0" setuptools
''; '';
pythonRelaxDeps = [ "orjson" ];
build-system = [ setuptools ]; build-system = [ setuptools ];
dependencies = [ orjson ];
# Module has no tests # Module has no tests
doCheck = false; doCheck = false;