forked from mirrors/nixpkgs
19 lines
446 B
Nix
19 lines
446 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyasn1";
|
|
version = "0.4.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "a9495356ca1d66ed197a0f72b41eb1823cf7ea8b5bd07191673e8147aecf8604";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "ASN.1 tools for Python";
|
|
homepage = http://pyasn1.sourceforge.net/;
|
|
license = "mBSD";
|
|
platforms = platforms.unix; # arbitrary choice
|
|
};
|
|
}
|