-
-
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
pyditz: init at 0.10.3 #49637
pyditz: init at 0.10.3 #49637
Conversation
I'm not quite sure what to do to the fact that pyditz depends on cerberus<1.2 and the version in nixpkgs is 1.2. I added a package pythonPackages.cerberus11 to address this issue, but I'm not sure what would be the correct way. |
@@ -0,0 +1,25 @@ | |||
{ stdenv, python27, pythonPackages }: | |||
|
|||
python27.pkgs.buildPythonApplication rec { |
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.
You can get the python package from pythonPackages.python
instead of python27
. That way you know python and the package set will be in sync.
And python27.pkgs.buildPythonApplication
can be changed to pythonPackages.buildPythonApplication
.
pname = "pyditz"; | ||
sha256 = "0j405w0i0d98lzkblnyjqzd21dm73g80fws6smap002skfb85msk"; | ||
}; | ||
propagatedBuildInputs = [ python27 pythonPackages.pyyaml pythonPackages.six pythonPackages.jinja2 pythonPackages.cerberus11 ]; |
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.
Can be simplified with propagatedBuildInputs = with pythonPackages; [ pyyaml ... ]
.
@ilikeavocadoes are you able to address the requested changes? |
Thanks for the poke, I had forgot about this. I will fix the issues. |
Now (with or without the suggested modifications) the build fails with
Any idea what causes this? |
you need to add setuptools_scm to the buildInputs, look at pkgs/applications/misc/plover/default.nix for instance |
@GrahamcOfBorg build pyditz |
Motivation for this change
Add pyditz issue tracker
Things done
sandbox
innix.conf
on non-NixOS)nix-shell -p nox --run "nox-review wip"
./result/bin/
)nix path-info -S
before and after)