depot/third_party/nixpkgs/pkgs/development/python-modules/einops/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

66 lines
1.3 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
jupyter,
nbconvert,
numpy,
parameterized,
pillow,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "einops";
version = "0.8.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "arogozhnikov";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-6x9AttvSvgYrHaS5ESKOwyEnXxD2BitYTGtqqSKur+0=";
};
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" ];
__darwinAllowLocalNetworking = true;
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 ];
};
}