Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(loom): Set correct owner on moved repo contextlib2 #14

Merged
merged 1 commit into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,9 @@ Native library for probability distributions in python used by Loom. NOTE: this

Other upstream python packages required by Distributions and/or Loom.

#### `.#loom.ociImg`

A Loom container image is also provided as a passthru attribute of `loom`. It can be built and loaded into your local Docker registry with the following command:
```sh
docker load -i $(nix build 'github:OpenGen/nix/loom-oci-img-attribute#loom.ociImg' --no-link --print-out-paths)
```
2 changes: 1 addition & 1 deletion pkgs/loom/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ let
# https://github.com/jazzband/contextlib2/pull/52
# updated to support Python3
src = fetchFromGitHub {
owner = "mr-c";
owner = "jazzband";
repo = "contextlib2";
rev = "b8b7eb8ecd9e012178b5dcec4313edded751a459";
hash = "sha256-FSx/vKctoFl4NlwzNDa9eDNUXeW1J875/nB6of+5gQk=";
Expand Down
Loading