about summary refs log tree commit diff
path: root/pkgs/development/python-modules/tensorflow-estimator/bin.nix
blob: 908a29370f954a058be0b27e44cc0bc02718b6f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
  lib,
  fetchPypi,
  buildPythonPackage,
  numpy,
  absl-py,
  mock,
}:

buildPythonPackage rec {
  pname = "tensorflow-estimator";
  version = "2.11.0";
  format = "wheel";

  src = fetchPypi {
    pname = "tensorflow_estimator";
    inherit version format;
    hash = "sha256-6jtkrP/z2aJE8GF4yb3ty90/Eltn0IiNuoIpSY0GRos=";
  };

  propagatedBuildInputs = [
    mock
    numpy
    absl-py
  ];

  meta = with lib; {
    description = "TensorFlow Estimator is a high-level API that encapsulates model training, evaluation, prediction, and exporting.";
    homepage = "http://tensorflow.org";
    license = licenses.asl20;
    maintainers = with maintainers; [ jyp ];
  };
}