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

[DO NOT MERGE] Oatmeal's Testing Playground #8

Draft
wants to merge 7 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
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
Prev Previous commit
Next Next commit
3
OatmealDome committed Dec 19, 2024
commit 4ecfe703e74b351ed254abe7063f015cd20fa54f
7 changes: 6 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
@@ -18,12 +18,17 @@
# https://github.com/NixOS/nixpkgs/pull/361930
wheel = super.wheel.overridePythonAttrs (old: {
version = "0.45.1";

src = old.src.override {
rev = "refs/tags/0.45.1";
hash = "sha256-tgueGEWByS5owdA5rhXGn3qh1Vtf0HGYC6+BHfrnGAs=";
};
});
setuptools = super.setuptools.overridePythonAttrs (old: {
version = "75.2.0";
src = old.src.override {
rev = "refs/tags/75.2.0";
};
});
});
};
})