summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyasn1/default.nix
blob: 206db053a564eabac1d875a8d3f525547566e8cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, buildPythonPackage, fetchPypi, }:

buildPythonPackage rec {
  pname = "pyasn1";
  version = "0.4.8";

  src = fetchPypi {
    inherit pname version;
    sha256 = "aef77c9fb94a3ac588e87841208bdec464471d9871bd5050a287cc9a475cd0ba";
  };

  meta = with stdenv.lib; {
    description = "ASN.1 tools for Python";
    homepage = "http://pyasn1.sourceforge.net/";
    license = "mBSD";
    platforms = platforms.unix;  # arbitrary choice
  };
}