pycryptodome: init at 3.4.3

This commit is contained in:
Carl Sverre
2016-11-24 14:35:41 -08:00
parent b69f568f4c
commit 99e6b63199
2 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{ stdenv, fetchurl, python, buildPythonPackage, gmp }:
buildPythonPackage rec {
version = "3.4.3";
name = "pycryptodome-${version}";
namePrefix = "";
src = fetchurl {
url = "mirror://pypi/p/pycryptodome/${name}.tar.gz";
sha256 = "1x2kk2va77lqys2dd7gwh35m4vrp052zz5hvv1zqxzksg2srf5jb";
};
meta = {
homepage = "https://www.pycryptodome.org/";
description = "Python Cryptography Toolkit";
platforms = stdenv.lib.platforms.unix;
};
}