-
-
Notifications
You must be signed in to change notification settings - Fork 14.1k
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
ipython: add darwin-specific dependencies #10250
Conversation
@@ -3759,7 +3778,7 @@ let | |||
sha256 = "d8fb368c6a4dd58bc6cd5e61d4a12d119c4506fd344a371b3429b3ac2623b9ac"; | |||
}; | |||
|
|||
propagatedBuildInputs = with self; [ pkgs.gnutls ]; | |||
propagatedbuildinputs = with self; [ pkgs.gnutls ]; |
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.
This looks like a bad edit...
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.
Oops I think that was a vim-fail. Fixed now.
8baff95
to
3f2f28a
Compare
I think you need to disable |
3f2f28a
to
bc2fb5c
Compare
@FRidh thanks, for the tip - I've disabled it on pypy now. I think travis actually failed because I missed the dependency on |
bc2fb5c
to
532d6cc
Compare
Good. Could you put appnope and gnureadline in separate commits following the contributors guide. Also, |
@FRidh Thanks, pulled out into separate commits now. As for |
532d6cc
to
2e2b2c3
Compare
Hmm, not sure why travis is failing now - it's the same code as a previously successful run, sliced into different commits. Looks like it's checking the PR, but a |
https://nixos.org/wiki/Contributing
|
@FRidh
This is why I needed to remove I'm happy to add it if it's necessary, but it seems like it isn't, and might confuse people if we start doing that now - currently all of the |
So, anyone know why the travis build is failing? It's consistently getting:
|
Note that travis checks on our PRs tend to be unreliable and they're not a requirement for merging. |
In that case, can this be merged? |
I suppose so. Darwin users seem uninterested, unfortunately. |
It seems safe enough. I verified tarball builds at least.
After the recent upgrade to jupyter (ipython 4),
ipython
fails on darwin due to missing packages which it tries to fetch during build. I've added these two pypi packages (appnope
andgnureadline
), and made ipython depend on them whenstdenv.isDarwin
. I've tested this locally, and it now works on darwin.