2019-09-29 06:44:23 +02:00
|
|
|
{ buildPythonPackage, fetchPypi, lib, numpy, pytest_4 }:
|
|
|
|
|
2018-12-26 19:26:26 +01:00
|
|
|
buildPythonPackage rec {
|
2019-10-24 08:47:40 +02:00
|
|
|
version = "3.1.0";
|
2018-12-26 19:26:26 +01:00
|
|
|
pname = "opt_einsum";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit version pname;
|
2019-10-24 08:47:40 +02:00
|
|
|
sha256 = "edfada4b1d0b3b782ace8bc14e80618ff629abf53143e1e6bbf9bd00b11ece77";
|
2018-12-26 19:26:26 +01:00
|
|
|
};
|
|
|
|
|
2019-09-29 07:02:34 +02:00
|
|
|
propagatedBuildInputs = [ numpy ];
|
|
|
|
|
|
|
|
checkInputs = [ pytest_4 ];
|
2018-12-26 19:26:26 +01:00
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
pytest
|
|
|
|
'';
|
|
|
|
|
2019-09-29 07:02:34 +02:00
|
|
|
meta = with lib; {
|
2018-12-26 19:26:26 +01:00
|
|
|
description = "Optimizing NumPy's einsum function with order optimization and GPU support.";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/dgasmith/opt_einsum";
|
2019-09-29 07:02:34 +02:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ teh ];
|
2018-12-26 19:26:26 +01:00
|
|
|
};
|
|
|
|
}
|