summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/inference-gym/default.nix
blob: 315d78dde39de9c569af765286b2deac643f0e78 (plain)
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
{
  lib,
  buildPythonPackage,
  fetchPypi,
}:

buildPythonPackage rec {
  pname = "inference-gym";
  version = "0.0.5";
  format = "wheel";

  src = fetchPypi {
    inherit format version;
    pname = "inference_gym";
    dist = "py3";
    python = "py3";
    hash = "sha256-E3lNgCZIObPBkl0PWACUG19XOiCOh1+N/sUFHQyA/wE=";
  };

  pythonImportsCheck = [ "inference_gym" ];

  # The package does not ship any test.
  doCheck = false;

  meta = {
    description = "Place to exercise inference methods to help make them faster, leaner and more robust";
    homepage = "https://github.com/tensorflow/probability/tree/main/spinoffs/inference_gym";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ GaetanLepage ];
  };
}