summary refs log blame commit diff
path: root/pkgs/development/tools/asn2quickder/default.nix
blob: 1341017df0564880ac3deaafbb932fae99d80547 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                  
                                                   
 
                            
                         
                    

                         
                                                                    

                               
                       

    
                

                                    
 


                                            
                                         
 
                                                    
 
                    
                                                                   
                                                         




                                                 
{ lib, buildPythonApplication, fetchFromGitHub, makeWrapper, cmake
, pytest-runner, pytest, six, pyparsing, asn1ate }:

buildPythonApplication rec {
  pname = "asn2quickder";
  version = "1.3.0";

  src = fetchFromGitHub {
    sha256 = "15lxv8vcjnsjxg7ywcac5p6mj5vf5pxq1219yap653ci4f1liqfr";
    rev = "version-${version}";
    owner = "vanrein";
    repo = "quick-der";
  };

  postPatch = ''
    patchShebangs ./python/scripts/*
  '';

  dontUseCmakeConfigure = true;

  nativeBuildInputs = [ makeWrapper cmake ];
  checkInputs = [ pytest-runner pytest ];

  propagatedBuildInputs = [ pyparsing asn1ate six ];

  meta = with 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 ];
  };
}