2021-02-05 17:12:51 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyasn1";
|
|
|
|
version = "0.4.8";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "aef77c9fb94a3ac588e87841208bdec464471d9871bd5050a287cc9a475cd0ba";
|
|
|
|
};
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "ASN.1 tools for Python";
|
|
|
|
homepage = "http://pyasn1.sourceforge.net/";
|
|
|
|
license = "mBSD";
|
|
|
|
platforms = platforms.unix; # arbitrary choice
|
|
|
|
};
|
|
|
|
}
|