-
-
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
pythonPackages update: asn1ate and asn2quickder #34161
Conversation
@@ -3,13 +3,12 @@ | |||
|
|||
buildPythonPackage rec { | |||
pname = "asn1ate"; | |||
date = "20160810"; | |||
version = "unstable-${date}"; | |||
version= "0.6"; | |||
name = "${pname}-${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.
You can delete the name
.
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.
Isn't that mandatory? I mean, in the sense that this creates the final name for the package?
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.
Not for Python. buildPythonPackage
will automatically derive it from pname
and 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.
Done. Thanks for helping out!
|
||
stdenv.mkDerivation rec { | ||
python2Packages.buildPythonPackage rec { | ||
pname = "asn2quickder"; | ||
name = "${pname}-${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.
Leave out name here as well.
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.
Done.
|
||
stdenv.mkDerivation rec { | ||
python2Packages.buildPythonPackage 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.
Better use python2Packages.callPackage
and take buildPythonPackage
as well as all dependencies as arguments.
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.
I don't understand what you mean by that? I thought his was a very common way of doing this.
Do you have a recommended example where this is done elsewhere in nixpkgs.
I grepped but could not find something that seems to fit here ...
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 all-packages.nix
, one can use python2Packages.callPackage
. And in default.nix
the first line should look something like
{ stdenv, fetchFromGitHub, python2Packages, makeWrapper, cmake, pytestrunner, pytest, six, pyparsing }:
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.
Actually, this should be buildPythonApplication
, since it's not a library.
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.
@dotlambda: When I do that, for some reason it tries to create a wheel and cannot find six. So it doesn't build anymore.
It builds perfectly fine as is. Would it not be okay to leave it as is? I only did a version bump...
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.
{ stdenv, buildPythonApplication, fetchFromGitHub, makeWrapper, cmake, pytestrunner, pytest, six, pyparsing }:
buildPythonApplication rec {
pname = "asn2quickder";
version = "1.2-5";
src = fetchFromGitHub {
sha256 = "0qwd3c0q7j8d22frqxrgqjnji36slnm8c2px6iyrvpd85xamza44";
rev = "version-${version}";
owner = "vanrein";
repo = "quick-der";
};
buildInputs = [ makeWrapper cmake
pytestrunner pytest six
];
propagatedBuildInputs = [ pyparsing ];
meta = with stdenv.lib; {
description = "An ASN.1 compiler with a backend for Quick DER";
homepage = https://github.com/vanrein/asn2quickder;
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = with maintainers; [ leenaars ];
};
}
By the way, some of those dependencies are nativeBuildInputs
.
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.
Thanks. Done.
1122567
to
1d4ca59
Compare
@dotlambda: I removed the 'name' but it turns out then you get a real ugly prefix, e.g. python2.7-asn1ate-0.6 and python2.7-asn2quickder-1.2-5 instead of asn1ate-0.6. So I reverted back to what I had. |
Actually, I think this should be called |
I don't know either, my solution was to keep them apart. That at least I understand and works... I have a separate quickder on my system which I will submit soon. I don't think this should cost anyone a lot of time at this stage. When we would run into any issues later on, this could be fixed then. This is very useful but not mainstream technical tooling... |
1d4ca59
to
852706c
Compare
All suggestions have been processed, should be ready to merge. |
@GrahamcOfBorg build quickder |
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.
Failure for system: x86_64-linux
Skipped ASN.1 header file generation for rfc2578.asn1
rm -f quick-der
ln -s . quick-der
Skipped compilation of skipped header files
install: cannot stat 'rfc3280.h': No such file or directory
make[1]: *** [Makefile:39: install] Error 1
make[1]: Leaving directory '/tmp/nix-build-quickder-1.0-RC2.drv-0/source/rfc'
make: *** [Makefile:20: install] Error 2
builder for ‘/nix/store/c82bfpjpiizfmxg90qymz9gkm5xb4rkl-quickder-1.0-RC2.drv’ failed with exit code 2
error: build of ‘/nix/store/c82bfpjpiizfmxg90qymz9gkm5xb4rkl-quickder-1.0-RC2.drv’ failed
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.
Failure for system: x86_64-darwin
Package ‘quickder-1.0-RC2’ in /tmp/nix-ofborg/repo/38dca4e3aa6bca43ea96d2fcc04e8229/builder/lnl7-mac/pkgs/development/libraries/quickder/default.nix:32 is not supported on ‘x86_64-darwin’, refusing to evaluate.
a) For `nixos-rebuild` you can set
{ nixpkgs.config.allowBroken = true; }
in configuration.nix to override this.
b) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add
{ allowBroken = true; }
to ~/.config/nixpkgs/config.nix.
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.
Failure for system: aarch64-linux
Skipped ASN.1 header file generation for rfc2578.asn1
rm -f quick-der
ln -s . quick-der
Skipped compilation of skipped header files
install: cannot stat 'rfc3280.h': No such file or directory
make[1]: *** [Makefile:39: install] Error 1
make[1]: Leaving directory '/build/source/rfc'
make: *** [Makefile:20: install] Error 2
builder for '/nix/store/aqy0wjncd0f4g5qzzjh2iwqqhjrxw3nm-quickder-1.0-RC2.drv' failed with exit code 2
error: build of '/nix/store/aqy0wjncd0f4g5qzzjh2iwqqhjrxw3nm-quickder-1.0-RC2.drv' failed
Was |
|
852706c
to
44b2b15
Compare
44b2b15
to
5496150
Compare
I updated quickder to the latest release, everything should work now. |
5496150
to
c473eff
Compare
@GrahamcOfBorg build quickder |
Failure on x86_64-linux (full log) Partial log (click to expand)
|
@leenaars quickder still seems to be failing. |
Failure on aarch64-linux (full log) Partial log (click to expand)
|
Failure on x86_64-darwin (full log) Partial log (click to expand)
|
c473eff
to
2b90592
Compare
2b90592
to
1afb012
Compare
The failure is in both cases a script that is called which fails on: A little digging reveals that a chrooted system does not have /usr/bin/env by design. I used patchShebangs to fix the issue. |
@GrahamcOfBorg build quickder |
1 similar comment
@GrahamcOfBorg build quickder |
Failure on x86_64-darwin (full log) Partial log (click to expand)
|
Failure on x86_64-linux (full log) Partial log (click to expand)
|
Failure on aarch64-linux (full log) Partial log (click to expand)
|
@GrahamcOfBorg build quickder |
Success on x86_64-linux (full log) Partial log (click to expand)
|
Success on aarch64-linux (full log) Partial log (click to expand)
|
Failure on x86_64-darwin (full log) Partial log (click to expand)
|
Motivation for this change
Upgrade to latest released version of these asn1 tools.
Things done
build-use-sandbox
innix.conf
on non-NixOS)nix-shell -p nox --run "nox-review wip"
./result/bin/
)