biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / inference-gym / default.nix
blobdd1a854b92c923b9da9b873b9488085d1788128e
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "inference-gym";
9   version = "0.0.4";
10   format = "wheel";
12   src = fetchPypi {
13     inherit format version;
14     pname = "inference_gym";
15     dist = "py3";
16     python = "py3";
17     hash = "sha256-bpi/IB8PuLPIKoTjmBeVl/4XGvE/yyG8WYxNqNcruvE=";
18   };
20   pythonImportsCheck = [ "inference_gym" ];
22   # The package does not ship any test.
23   doCheck = false;
25   meta = {
26     description = "Place to exercise inference methods to help make them faster, leaner and more robust";
27     homepage = "https://github.com/tensorflow/probability/tree/main/spinoffs/inference_gym";
28     license = lib.licenses.asl20;
29     maintainers = with lib.maintainers; [ GaetanLepage ];
30   };