nixpkgs/pkgs/development/python-modules/graph_nets/default.nix

46 lines
808 B
Nix
Raw Normal View History

2019-04-12 16:25:25 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, tensorflow
, absl-py
, dm-sonnet
, networkx
, numpy
, setuptools
, six
, future
}:
buildPythonPackage rec {
pname = "graph_nets";
2020-06-06 06:47:11 +00:00
version = "1.1.0";
2019-04-12 16:25:25 +00:00
src = fetchPypi {
inherit pname version;
2020-06-06 06:47:11 +00:00
sha256 = "278a040674bef295aaf8bb5b0d1b3f207144dc68f0bcfe3f14912b9b85eb0927";
2019-04-12 16:25:25 +00:00
};
postPatch = ''
# https://github.com/deepmind/graph_nets/issues/63
sed -i 's/dm-sonnet==1.23/dm-sonnet/' setup.py
'';
propagatedBuildInputs = [
tensorflow
absl-py
dm-sonnet
networkx
numpy
setuptools
six
future
];
meta = with lib; {
description = "Build Graph Nets in Tensorflow";
homepage = "https://github.com/deepmind/graph_nets";
2019-04-12 16:25:25 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ timokau ];
};
}