lol

Merge pull request #266225 from GaetanLepage/tensorflow-probability

python311Packages.tensorflow-probability: 0.19.0 -> 0.21.0

authored by

OTABI Tomoya and committed by
GitHub
fea9134c 68e8d488

+7 -8
+7 -8
pkgs/development/python-modules/tensorflow-probability/default.nix
··· 27 27 }: 28 28 29 29 let 30 - version = "0.19.0"; 31 - pname = "tensorflow_probability"; 30 + version = "0.21.0"; 31 + pname = "tensorflow-probability"; 32 32 33 33 # first build all binaries and generate setup.py using bazel 34 34 bazel-wheel = buildBazelPackage { 35 - name = "${pname}-${version}-py2.py3-none-any.whl"; 35 + name = "tensorflow_probability-${version}-py2.py3-none-any.whl"; 36 36 src = fetchFromGitHub { 37 37 owner = "tensorflow"; 38 38 repo = "probability"; 39 - rev = "v" + version; 40 - hash = "sha256-ZkQ20Qt/RF/leVP6Kc38tGgPz+C6lEuHvoL+s97oksE="; 39 + rev = "refs/tags/v${version}"; 40 + hash = "sha256-DsJd1E5n86xNS7Ci0DXxoUxQ9jH8OwTZq2UuLlQtMUU="; 41 41 }; 42 42 nativeBuildInputs = [ 43 43 # needed to create the output wheel in installPhase ··· 54 54 LIBTOOL = lib.optionalString stdenv.isDarwin "${cctools}/bin/libtool"; 55 55 56 56 fetchAttrs = { 57 - # FIXME: tensorflow is currently marked as broken, update the hash once it's fixed 58 - sha256 = "sha256-0ChXujA2XpnkybrraN3FIJA/QkxLCfX97id2jMFzFJk="; 57 + sha256 = "sha256-1iO/eXz1wvSIRTmGuGZDF9VeDVTiWYnjw0Cby4n/6HM="; 59 58 }; 60 59 61 60 buildAttrs = { ··· 117 116 description = "Library for probabilistic reasoning and statistical analysis"; 118 117 homepage = "https://www.tensorflow.org/probability/"; 119 118 license = licenses.asl20; 120 - maintainers = with maintainers; []; # This package is maintainerless. 119 + maintainers = with maintainers; [ GaetanLepage ]; 121 120 }; 122 121 }