about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/slicer/default.nix
blob: 89fb4e5dc728a5395ac0b4606491981af8cdf82d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, pytestCheckHook
, pandas
, pytorch
, scipy
}:

buildPythonPackage rec {
  pname = "slicer";
  version = "0.0.7";
  disabled = isPy27;

  src = fetchPypi {
    inherit pname version;
    sha256 = "f5d5f7b45f98d155b9c0ba6554fa9770c6b26d5793a3e77a1030fb56910ebeec";
  };

  checkInputs = [ pytestCheckHook pandas pytorch scipy ];

  meta = with 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;
  };
}