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

Add nix-prefetch-github #39214

Merged
merged 2 commits into from
May 23, 2018
Merged

Conversation

seppeljordan
Copy link
Contributor

@seppeljordan seppeljordan commented Apr 20, 2018

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
  • Tested using sandboxing (nix.useSandbox on NixOS, or option build-use-sandbox in nix.conf on non-NixOS)
  • Built on platform(s)
    • NixOS
    • macOS
    • other Linux distributions
  • Tested via one or more NixOS test(s) if existing and applicable for the change (look inside nixos/tests)
  • Tested compilation of all pkgs that depend on this change using nix-shell -p nox --run "nox-review wip"
  • Tested execution of all binary files (usually in ./result/bin/)
  • Fits CONTRIBUTING.md.

Sorry, something went wrong.

requests
];
meta = with lib; {
description = "prefetch sources from github";
Copy link
Member

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}";
Copy link
Member

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";
Copy link
Member

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";
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

six
attrs
];
doCheck = false;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why?

@@ -20647,6 +20647,10 @@ with pkgs;

nix-pin = callPackage ../tools/package-management/nix-pin { };

nix-prefetch-github = callPackages ../build-support/nix-prefetch-github {
Copy link
Member

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
Copy link
Member

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";
Copy link
Member

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

@Mic92
Copy link
Member

Mic92 commented Apr 21, 2018

Just as a side note: #21732 (comment)

@seppeljordan seppeljordan force-pushed the add-nix-prefetch-github branch 2 times, most recently from 018ac73 to f28169d Compare May 15, 2018 13:07
@seppeljordan
Copy link
Contributor Author

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 = [
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

checkInputs

}:
let

in
Copy link
Member

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";
Copy link
Member

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.

@seppeljordan
Copy link
Contributor Author

@dotlambda thx for the review

@seppeljordan seppeljordan force-pushed the add-nix-prefetch-github branch from f28169d to aca3198 Compare May 22, 2018 18:55
@lukateras
Copy link
Member

Maybe, let's phase out fetchFromGitHub in favor of fetchzip? This needs an RFC.

@Mic92
Copy link
Member

Mic92 commented May 23, 2018

@GrahamcOfBorg build nix-prefetch-github

@GrahamcOfBorg
Copy link

Success on x86_64-darwin (full log)

Attempted: nix-prefetch-github

Partial log (click to expand)

reading manifest file 'src/nix_prefetch_github.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file 'src/nix_prefetch_github.egg-info/SOURCES.txt'
running build_ext

----------------------------------------------------------------------
Ran 0 tests in 0.000s

OK
/nix/store/a8szdagwdikvh0nkhsklkhqy871sw5ws-nix-prefetch-github-1.3

@GrahamcOfBorg
Copy link

Success on x86_64-linux (full log)

Attempted: nix-prefetch-github

Partial log (click to expand)

reading manifest file 'src/nix_prefetch_github.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file 'src/nix_prefetch_github.egg-info/SOURCES.txt'
running build_ext

----------------------------------------------------------------------
Ran 0 tests in 0.000s

OK
/nix/store/ys2wb4hymcfwxfy6l6qalvagia7jp6ai-nix-prefetch-github-1.3

@GrahamcOfBorg
Copy link

Success on aarch64-linux (full log)

Attempted: nix-prefetch-github

Partial log (click to expand)

reading manifest file 'src/nix_prefetch_github.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file 'src/nix_prefetch_github.egg-info/SOURCES.txt'
running build_ext

----------------------------------------------------------------------
Ran 0 tests in 0.000s

OK
/nix/store/23rz8qw43xdp4f7qgy9wzrasakgh4lgx-nix-prefetch-github-1.3

@Mic92 Mic92 merged commit 273c882 into NixOS:master May 23, 2018
@FRidh FRidh mentioned this pull request May 28, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

6 participants