about summary refs log tree commit diff
path: root/pkgs/development/python-modules/asn1ate/default.nix
blob: ce07c237624560496b36d88c50fe75833609dfa1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, buildPythonPackage, fetchFromGitHub
, pyparsing }:

buildPythonPackage rec {
  pname = "asn1ate";
  date = "20160810";
  name = "${pname}-unstable-${date}";

  src = fetchFromGitHub {
    sha256 = "04pddr1mh2v9qq8fg60czwvjny5qwh4nyxszr3qc4bipiiv2xk9w";
    rev = "c56104e8912400135509b584d84423ee05a5af6b";
    owner = "kimgr";
    repo = pname;
  };

  propagatedBuildInputs = [ pyparsing ];

  meta = with stdenv.lib; {
    description = "Python library for translating ASN.1 into other forms";
    license = licenses.bsd3;
    platforms = platforms.linux;
    maintainers = with maintainers; [ leenaars ];
  };
}