summary refs log tree commit diff
path: root/pkgs/development/python-modules/opt-einsum/default.nix
blob: 064c0adb134857bdb3f1eff2e4cea244ba39327b (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
{ buildPythonPackage, fetchPypi, lib, numpy, pytest_4 }:

buildPythonPackage rec {
  version = "3.1.0";
  pname = "opt_einsum";

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

  propagatedBuildInputs = [ numpy ];

  checkInputs = [ pytest_4 ];

  checkPhase = ''
    pytest
  '';

  meta = with lib; {
    description = "Optimizing NumPy's einsum function with order optimization and GPU support.";
    homepage = http://optimized-einsum.readthedocs.io;
    license = licenses.mit;
    maintainers = with maintainers; [ teh ];
  };
}