asn2quickder: 1.3.0 -> 1.7.1

This commit is contained in:
Aaron Jheng 2022-10-17 09:45:22 +00:00
parent 0f3ea34875
commit 85d72284df
No known key found for this signature in database
GPG Key ID: F6A547A869D050A3
2 changed files with 23 additions and 11 deletions

View File

@ -1,31 +1,43 @@
{ lib, buildPythonApplication, fetchFromGitHub, makeWrapper, cmake
, pytest-runner, pytest, six, pyparsing, asn1ate }:
{ lib
, buildPythonApplication
, fetchFromGitLab
, makeWrapper
, cmake
, six
, pyparsing
, asn1ate
, colored
}:
buildPythonApplication rec {
pname = "asn2quickder";
version = "1.3.0";
version = "1.7.1";
src = fetchFromGitHub {
sha256 = "15lxv8vcjnsjxg7ywcac5p6mj5vf5pxq1219yap653ci4f1liqfr";
rev = "version-${version}";
owner = "vanrein";
src = fetchFromGitLab {
owner = "arpa2";
repo = "quick-der";
rev = "v${version}";
sha256 = "sha256-f+ph5PL+uWRkswpOLDwZFWjh938wxoJ6xocJZ2WZLEk=";
};
postPatch = ''
patchShebangs ./python/scripts/*
# Unpin pyparsing 3.0.0. Issue resolved in latest version.
substituteInPlace setup.py --replace 'pyparsing==3.0.0' 'pyparsing'
'';
dontUseCmakeConfigure = true;
nativeBuildInputs = [ makeWrapper cmake ];
checkInputs = [ pytest-runner pytest ];
propagatedBuildInputs = [ pyparsing asn1ate six ];
propagatedBuildInputs = [ pyparsing asn1ate six colored ];
doCheck = false; # Flaky tests
meta = with lib; {
description = "An ASN.1 compiler with a backend for Quick DER";
homepage = "https://github.com/vanrein/asn2quickder";
homepage = "https://gitlab.com/arpa2/quick-der";
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = with maintainers; [ leenaars ];

View File

@ -16025,7 +16025,7 @@ with pkgs;
arpa2common = callPackage ../development/libraries/arpa2common { };
asn2quickder = python2Packages.callPackage ../development/tools/asn2quickder {};
asn2quickder = python3Packages.callPackage ../development/tools/asn2quickder {};
astyle = callPackage ../development/tools/misc/astyle { };