2017-11-02 23:35:11 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyasn1";
|
2018-07-26 12:09:36 +01:00
|
|
|
version = "0.4.4";
|
2017-11-02 23:35:11 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-07-26 12:09:36 +01:00
|
|
|
sha256 = "f58f2a3d12fd754aa123e9fa74fb7345333000a035f3921dbdaa08597aa53137";
|
2017-11-02 23:35:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "ASN.1 tools for Python";
|
|
|
|
homepage = http://pyasn1.sourceforge.net/;
|
|
|
|
license = "mBSD";
|
|
|
|
platforms = platforms.unix; # arbitrary choice
|
|
|
|
};
|
|
|
|
}
|