summaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/asn1ate/default.nix
blob: 0a54896521f014194c7aa5e46503b9d282407d34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  pyparsing,
}:

buildPythonPackage rec {
  pname = "asn1ate";
  format = "setuptools";
  version = "0.6";

  src = fetchFromGitHub {
    sha256 = "1p8hv4gsyqsdr0gafcq497n52pybiqmc22di8ai4nsj60fv0km45";
    rev = "v${version}";
    owner = "schneider-electric";
    repo = "asn1ate";
  };

  propagatedBuildInputs = [ pyparsing ];

  meta = {
    description = "Python library for translating ASN.1 into other forms";
    homepage = "https://github.com/schneider-electric/asn1ate";
    mainProgram = "asn1ate";
    license = lib.licenses.bsd3;
    platforms = lib.platforms.unix;
  };
}