mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-16 14:48:14 +00:00
python311Packages.tensorflow: remove with statements
This commit is contained in:
parent
8b61506fec
commit
4785eeeea3
@ -589,15 +589,14 @@ let
|
||||
};
|
||||
|
||||
meta =
|
||||
with lib;
|
||||
{
|
||||
badPlatforms = lib.optionals cudaSupport lib.platforms.darwin;
|
||||
changelog = "https://github.com/tensorflow/tensorflow/releases/tag/v${version}";
|
||||
description = "Computation using data flow graphs for scalable machine learning";
|
||||
homepage = "http://tensorflow.org";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
platforms = with platforms; linux ++ darwin;
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ abbradar ];
|
||||
platforms = with lib.platforms; linux ++ darwin;
|
||||
broken =
|
||||
stdenv.isDarwin
|
||||
|| !(xlaSupport -> cudaSupport)
|
||||
|
Loading…
Reference in New Issue
Block a user