nixpkgs/pkgs/development/python-modules/pyasn1/default.nix

19 lines
446 B
Nix
Raw Normal View History

2017-11-02 23:35:11 +00:00
{ stdenv, buildPythonPackage, fetchPypi, }:
buildPythonPackage rec {
pname = "pyasn1";
2019-10-16 10:43:12 +01:00
version = "0.4.7";
2017-11-02 23:35:11 +00:00
src = fetchPypi {
inherit pname version;
2019-10-16 10:43:12 +01:00
sha256 = "a9495356ca1d66ed197a0f72b41eb1823cf7ea8b5bd07191673e8147aecf8604";
2017-11-02 23:35:11 +00:00
};
meta = with stdenv.lib; {
description = "ASN.1 tools for Python";
homepage = http://pyasn1.sourceforge.net/;
license = "mBSD";
platforms = platforms.unix; # arbitrary choice
};
}