Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / asn1ate / default.nix
bloba141fc746f78b8eb1f2f32bed6e6fb96eacd6a99
1 { lib, buildPythonPackage, fetchFromGitHub, pyparsing }:
3 buildPythonPackage rec {
4   pname = "asn1ate";
5   version= "0.6";
7   src = fetchFromGitHub {
8     sha256 = "1p8hv4gsyqsdr0gafcq497n52pybiqmc22di8ai4nsj60fv0km45";
9     rev = "v${version}";
10     owner = "kimgr";
11     repo = pname;
12   };
14   propagatedBuildInputs = [ pyparsing ];
16   meta = with lib; {
17     description = "Python library for translating ASN.1 into other forms";
18     license = licenses.bsd3;
19     platforms = platforms.unix;
20     maintainers = with maintainers; [ leenaars ];
21   };