depot/third_party/nixpkgs/pkgs/development/python-modules/slicer/default.nix
Default email cf3f6e7a7d Project import generated by Copybara.
GitOrigin-RevId: 24eb3f87fc610f18de7076aee7c5a84ac5591e3e
2020-11-30 09:33:03 +01:00

29 lines
668 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, isPy27
, pytestCheckHook
, pandas
, pytorch
}:
buildPythonPackage rec {
pname = "slicer";
version = "0.0.4";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "21d53aac4e78c93fd83c0fd2f8f9d8a2195ac079dffdc0da81cd749da0f2f355";
};
checkInputs = [ pytestCheckHook pandas pytorch ];
meta = with stdenv.lib; {
description = "Wraps tensor-like objects and provides a uniform slicing interface via __getitem__";
homepage = "https://github.com/interpretml/slicer";
license = licenses.mit;
maintainers = with maintainers; [ evax ];
platforms = platforms.unix;
};
}