2016-11-24 22:35:41 +00:00
|
|
|
{ stdenv, fetchurl, python, buildPythonPackage, gmp }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2018-04-04 19:14:11 +01:00
|
|
|
version = "3.5.1";
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "pycryptodome";
|
|
|
|
name = "${pname}-${version}";
|
2016-11-24 22:35:41 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://pypi/p/pycryptodome/${name}.tar.gz";
|
2018-04-04 19:14:11 +01:00
|
|
|
sha256 = "b7957736f5e868416b06ff033f8525e64630c99a8880b531836605190b0cac96";
|
2016-11-24 22:35:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://www.pycryptodome.org/;
|
2016-11-24 22:35:41 +00:00
|
|
|
description = "Python Cryptography Toolkit";
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
};
|
|
|
|
}
|