python313Packages.docplex: 2.29.245 -> 2.30.251 (#432221)

This commit is contained in:
Fabian Affolter
2025-08-09 15:00:31 +02:00
committed by GitHub
@@ -2,22 +2,19 @@
lib,
buildPythonPackage,
fetchPypi,
isPy27,
setuptools,
futures ? null,
docloud,
requests,
}:
buildPythonPackage rec {
pname = "docplex";
version = "2.29.245";
version = "2.30.251";
pyproject = true;
# No source available from official repo
src = fetchPypi {
inherit pname version;
hash = "sha256-pCb+P6WQUPX+dzFfe6Hcfao1fH2NDtBmpYNWRx2FPko=";
hash = "sha256-ZQMhn1tRJ1p+TnfKQzKQOw+Akl0gUDCkjT9qp8oNvyo=";
};
postPatch = ''
@@ -27,13 +24,14 @@ buildPythonPackage rec {
build-system = [ setuptools ];
propagatedBuildInputs = [
dependencies = [
docloud
requests
]
++ lib.optional isPy27 futures;
];
# PypI release does not include tests
doCheck = false;
pythonImportsCheck = [ "docplex" ];
meta = with lib; {