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:
commit
68fafe9810
1 changed files with 2 additions and 3 deletions
|
@ -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 ];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue