···4545 description = "A package for graph statistical algorithms";
4646 license = licenses.asl20; # changing to `licenses.mit` in next release
4747 maintainers = with maintainers; [ bcdarwin ];
4848+ # graspologic-native is not available
4949+ broken = true;
4850 };
4951}
···3232, setproctitle
3333, setuptools
3434, shortuuid
3535+, substituteAll
3536, tqdm
3637}:
3738···4950 hash = "sha256-ZY7nTj93piTEeHhW+H+nQ+ws2dDmmY6u3p7uz296PbA=";
5051 };
51525353+ patches = [
5454+ (substituteAll {
5555+ src = ./hardcode-git-path.patch;
5656+ git = "${lib.getBin git}/bin/git";
5757+ })
5858+ ];
5959+5260 # setuptools is necessary since pkg_resources is required at runtime.
5361 propagatedBuildInputs = [
5462 click
···6674 setuptools
6775 shortuuid
6876 ];
6969-7070- # wandb expects git to be in PATH. See https://gist.github.com/samuela/57aeee710e41ab2bf361b7ed8fbbeabf
7171- # for the error message, and an example usage here: https://github.com/wandb/client/blob/d5f655b7ca7e3eac2f3a67a84bc5c2a664a31baf/wandb/sdk/internal/meta.py#L128.
7272- # See https://github.com/NixOS/nixpkgs/pull/164176#discussion_r828801621 as to
7373- # why we don't put it in propagatedBuildInputs. Note that this is difficult to
7474- # test offline due to https://github.com/wandb/client/issues/3519.
7575- postInstall = ''
7676- mkdir -p $out/bin
7777- ln -s ${git}/bin/git $out/bin/git
7878- '';
79778078 preCheck = ''
8179 export HOME=$(mktemp -d)