On Tue, May 25 2021, Hartmut Goebel wrote: > * gnu/packages/python-xyz.scm (python-asn1tools): New variable. > --- > gnu/packages/python-xyz.scm | 23 ++++++++++++++++++++++- > 1 file changed, 22 insertions(+), 1 deletion(-) > > +(define-public python-asn1tools > + (package > + (name "python-asn1tools") > + (version "0.158.0") > + (source > + (origin > + (method url-fetch) > + (uri (pypi-uri "asn1tools" version)) > + (sha256 > + (base32 "1k88a1azmyvp2ab6qcf2i40dig5abhyn7cmlyhmwwh8kr3syvma0")))) > + (build-system python-build-system) > + (propagated-inputs > + `(("python-bitstruct" ,python-bitstruct) > + ("python-diskcache" ,python-diskcache) > + ("python-prompt-toolkit" ,python-prompt-toolkit) > + ("python-pyparsing" ,python-pyparsing))) > + (home-page "https://github.com/eerimoq/asn1tools") > + (synopsis "ASN.1 parsing, encoding and decoding") > + (description "ASN.1 parsing, encoding and decoding") The description should consist of one or more full sentences. Otherwise, LGTM.