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