python3Packages.einops: init at 0.3.2

This commit is contained in:
Alexander Kiselyov 2021-09-12 15:03:22 +03:00
parent e26b155274
commit 46ede3924c
2 changed files with 56 additions and 0 deletions

View File

@ -0,0 +1,54 @@
{ lib
, fetchFromGitHub
, buildPythonPackage
, numpy
, nose
, nbformat
, nbconvert
, jupyter
, chainer
, pytorch
, mxnet
, tensorflow
}:
buildPythonPackage rec {
pname = "einops";
version = "0.3.2";
src = fetchFromGitHub {
owner = "arogozhnikov";
repo = pname;
rev = "v${version}";
sha256 = "0ix094cfh6w4bvx6ymp5dpm35y9nkaibcn1y50g6kwdp4f0473y8";
};
checkInputs = [
nose
numpy
# For notebook tests
nbformat
nbconvert
jupyter
# For backend tests
chainer
pytorch
mxnet
tensorflow
];
# No CUDA in sandbox
EINOPS_SKIP_CUPY = 1;
checkPhase = ''
export HOME=$TMPDIR
nosetests -v -w tests
'';
meta = {
description = "Flexible and powerful tensor operations for readable and reliable code";
homepage = "https://github.com/arogozhnikov/einops";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ yl3dy ];
};
}

View File

@ -2304,6 +2304,8 @@ in {
eggdeps = callPackage ../development/python-modules/eggdeps { };
einops = callPackage ../development/python-modules/einops { };
elgato = callPackage ../development/python-modules/elgato { };
elasticsearch = callPackage ../development/python-modules/elasticsearch { };