nixpkgs/pkgs/development/python-modules/opt-einsum/default.nix
2019-10-27 16:26:48 +01:00

27 lines
621 B
Nix

{ 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 ];
};
}