nixpkgs/pkgs/development/python-modules/dm-tree/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
917 B
Nix
Raw Normal View History

{ stdenv
, abseil-cpp
, absl-py
, attrs
2021-12-13 01:09:35 +00:00
, buildPythonPackage
, cmake
, fetchFromGitHub
2021-12-13 01:09:35 +00:00
, lib
, numpy
, pybind11
, wrapt
2021-12-13 01:09:35 +00:00
}:
buildPythonPackage rec {
pname = "dm-tree";
version = "0.1.8";
src = fetchFromGitHub {
owner = "deepmind";
repo = "tree";
rev = "refs/tags/${version}";
hash = "sha256-VvSJTuEYjIz/4TTibSLkbg65YmcYqHImTHOomeorMJc=";
2021-12-13 01:09:35 +00:00
};
patches = [
./cmake.patch
];
dontUseCmakeConfigure = true;
nativeBuildInputs = [
cmake
pybind11
];
buildInputs = [
abseil-cpp
pybind11
];
2021-12-13 01:09:35 +00:00
checkInputs = [
absl-py
attrs
numpy
wrapt
];
2021-12-13 01:09:35 +00:00
pythonImportsCheck = [ "tree" ];
meta = with lib; {
broken = stdenv.isDarwin;
2021-12-13 01:09:35 +00:00
description = "Tree is a library for working with nested data structures.";
homepage = "https://github.com/deepmind/tree";
license = licenses.asl20;
maintainers = with maintainers; [ samuela ndl ];
2021-12-13 01:09:35 +00:00
};
}