-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
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
Add nix-prefetch-github #39214
Add nix-prefetch-github #39214
Conversation
requests | ||
]; | ||
meta = with lib; { | ||
description = "prefetch sources from github"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
|
||
in | ||
buildPythonApplication { | ||
name = "nix-prefetch-github-${version}"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please use pname
and version
instead.
src = fetchFromGitHub { | ||
owner = "seppeljordan"; | ||
repo = "nix-prefetch-github"; | ||
rev = "b12ab7fe187924d8536d27b2ddf3bcccd2612b32"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be nicer to create releases/tags in the GitHub repo.
]; | ||
doCheck = false; | ||
meta = with lib; { | ||
description = "pure effects for Python"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
six | ||
attrs | ||
]; | ||
doCheck = false; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why?
pkgs/top-level/all-packages.nix
Outdated
@@ -20647,6 +20647,10 @@ with pkgs; | |||
|
|||
nix-pin = callPackage ../tools/package-management/nix-pin { }; | |||
|
|||
nix-prefetch-github = callPackages ../build-support/nix-prefetch-github { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
callPackage
@@ -0,0 +1,36 @@ | |||
{ buildPythonApplication |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please pass python3
or python3Packages
instead.
let | ||
|
||
version = "0.11.0"; | ||
pname = "effect"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no need to keep these out
Just as a side note: #21732 (comment) |
018ac73
to
f28169d
Compare
Hi, I think that I included all the suggestions that were given. Please tell me if there is more that I should change with this PR |
inherit pname version; | ||
sha256 = "1q75w4magkqd8ggabhhzzxmxakpdnn0vdg7ygj89zdc9yl7561q6"; | ||
}; | ||
buildInputs = [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
checkInputs
}: | ||
let | ||
|
||
in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Drop this let in
.
src = fetchFromGitHub { | ||
owner = "seppeljordan"; | ||
repo = "nix-prefetch-github"; | ||
rev = "b12ab7fe187924d8536d27b2ddf3bcccd2612b32"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please create tags in your GitHub repo.
@dotlambda thx for the review |
f28169d
to
aca3198
Compare
Maybe, let's phase out |
@GrahamcOfBorg build nix-prefetch-github |
Success on x86_64-darwin (full log) Attempted: nix-prefetch-github Partial log (click to expand)
|
Success on x86_64-linux (full log) Attempted: nix-prefetch-github Partial log (click to expand)
|
Success on aarch64-linux (full log) Attempted: nix-prefetch-github Partial log (click to expand)
|
Motivation for this change
This PR adds an application to nixpkgs to "prefetch" sources from github. For this purpose I also added a python package called "effect", because it is a dependency of "nix-prefetch-github"
Things done
build-use-sandbox
innix.conf
on non-NixOS)nix-shell -p nox --run "nox-review wip"
./result/bin/
)