2017-11-03 00:35:11 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyasn1";
|
2018-05-28 14:18:57 +02:00
|
|
|
version = "0.4.3";
|
2017-11-03 00:35:11 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-05-28 14:18:57 +02:00
|
|
|
sha256 = "fb81622d8f3509f0026b0683fe90fea27be7284d3826a5f2edf97f69151ab0fc";
|
2017-11-03 00:35:11 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "ASN.1 tools for Python";
|
|
|
|
homepage = http://pyasn1.sourceforge.net/;
|
|
|
|
license = "mBSD";
|
|
|
|
platforms = platforms.unix; # arbitrary choice
|
|
|
|
};
|
|
|
|
}
|