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

buildPythonPackage rec {
  name = "${pname}-${version}";
  pname = "pyasn1";
  version = "0.3.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "06hhy38jhwh95gpn8f03cr439273fsfsh4vhd5024r86nh5gyiir";
  };

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