0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

Merge pull request #315836 from NixOS/backport-315528-to-release-24.05

[Backport release-24.05] python312Packages.paddle2onnx: disable
This commit is contained in:
Weijia Wang 2024-05-30 13:10:42 +02:00 committed by GitHub
commit 68fafe9810
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,12 +1,11 @@
{
lib,
stdenv,
buildPythonPackage,
fetchPypi,
pythonOlder,
pythonAtLeast,
python,
onnx,
isPy311,
}:
let
pname = "paddle2onnx";
@ -30,7 +29,7 @@ buildPythonPackage {
format
;
disabled = pythonOlder "3.8" || isPy311;
disabled = pythonOlder "3.8" || pythonAtLeast "3.11";
propagatedBuildInputs = [ onnx ];