python310Packages.einops 0 -> 1 attrpath: python310Packages.einops Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/jlincgfxic0w10i8z115l3gv6q562w51-packages.json.drv building '/nix/store/jlincgfxic0w10i8z115l3gv6q562w51-packages.json.drv'... Going to be running update for following packages: - python3.10-einops-0.4.1 Press Enter key to continue... Running update for: - python3.10-einops-0.4.1: UPDATING ... - python3.10-einops-0.4.1: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/einops/default.nix b/pkgs/development/python-modules/einops/default.nix index 44b380e1032..0e7f83f92ea 100644 --- a/pkgs/development/python-modules/einops/default.nix +++ b/pkgs/development/python-modules/einops/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { pname = "einops"; - version = "0.4.1"; + version = "0.6.0"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -24,8 +24,8 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "arogozhnikov"; repo = pname; - rev = "v${version}"; - hash = "sha256-n4R4lcRimuOncisCTs2zJWPlqZ+W2yPkvkWAnx4R91s="; + rev = "refs/tags/v${version}"; + hash = "sha256-/bnp8IhDxp8EB/PoW5Dz+7rOru0/odOrts84aq4qyJw="; }; checkInputs = [ No auto update branch exists Old version 0.4.1" not present in staging derivation file with contents: { lib , buildPythonPackage , chainer , fetchFromGitHub , jupyter , keras #, mxnet , nbconvert , nbformat , nose , numpy , parameterized , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "einops"; version = "0.6.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "arogozhnikov"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-/bnp8IhDxp8EB/PoW5Dz+7rOru0/odOrts84aq4qyJw="; }; checkInputs = [ chainer jupyter keras # mxnet (has issues with some CPUs, segfault) nbconvert nbformat nose numpy parameterized pytestCheckHook ]; # No CUDA in sandbox EINOPS_SKIP_CUPY = 1; 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 ]; }; }