nixpkgs/pkgs/development/python-modules/dm-sonnet/default.nix
2022-11-08 14:42:02 +01:00

60 lines
1,006 B
Nix

{ lib
, absl-py
, buildPythonPackage
, dm-tree
, docutils
, etils
, fetchFromGitHub
, numpy
, pythonOlder
, tabulate
, tensorflow
, tensorflow-datasets
, wrapt
}:
buildPythonPackage rec {
pname = "dm-sonnet";
version = "2.0.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "deepmind";
repo = "sonnet";
rev = "v${version}";
hash = "sha256-YSMeH5ZTfP1OdLBepsxXAVczBG/ghSjCWjoz/I+TFl8=";
};
propagatedBuildInputs = [
dm-tree
etils
numpy
tabulate
wrapt
] ++ etils.optional-dependencies.epath;
passthru.optional-dependencies = {
tensorflow = [
tensorflow
];
};
checkInputs = [
docutils
tensorflow-datasets
];
pythonImportsCheck = [
"sonnet"
];
meta = with lib; {
description = "Library for building neural networks in TensorFlow";
homepage = "https://github.com/deepmind/sonnet";
license = licenses.asl20;
maintainers = with maintainers; [ onny ];
};
}