504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
68 lines
1.2 KiB
Nix
68 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, hatchling
|
|
, jupyter
|
|
, nbconvert
|
|
, numpy
|
|
, parameterized
|
|
, pillow
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "einops";
|
|
version = "0.7.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "arogozhnikov";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-wCs3rMnYCk07kJ3iPItxwCQATflKBYHk6tfBCjiF+bc=";
|
|
};
|
|
|
|
nativeBuildInputs = [ hatchling ];
|
|
|
|
nativeCheckInputs = [
|
|
jupyter
|
|
nbconvert
|
|
numpy
|
|
parameterized
|
|
pillow
|
|
pytestCheckHook
|
|
];
|
|
|
|
env.EINOPS_TEST_BACKENDS = "numpy";
|
|
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d);
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"einops"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Tests are failing as mxnet is not pulled-in
|
|
# https://github.com/NixOS/nixpkgs/issues/174872
|
|
"test_all_notebooks"
|
|
"test_dl_notebook_with_all_backends"
|
|
"test_backends_installed"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
"tests/test_layers.py"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Flexible and powerful tensor operations for readable and reliable code";
|
|
homepage = "https://github.com/arogozhnikov/einops";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ yl3dy ];
|
|
};
|
|
}
|
|
|