1{ stdenv, buildPythonPackage, fetchFromGitHub, pyparsing }:
2
3buildPythonPackage rec {
4 pname = "asn1ate";
5 version= "0.6";
6
7 src = fetchFromGitHub {
8 sha256 = "1p8hv4gsyqsdr0gafcq497n52pybiqmc22di8ai4nsj60fv0km45";
9 rev = "v${version}";
10 owner = "kimgr";
11 repo = pname;
12 };
13
14 propagatedBuildInputs = [ pyparsing ];
15
16 meta = with stdenv.lib; {
17 description = "Python library for translating ASN.1 into other forms";
18 license = licenses.bsd3;
19 platforms = platforms.linux;
20 maintainers = with maintainers; [ leenaars ];
21 };
22}