2016-11-24 22:35:41 +00:00
|
|
|
{ stdenv, fetchurl, python, buildPythonPackage, gmp }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-09-05 10:16:41 +01:00
|
|
|
version = "3.4.7";
|
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";
|
2017-09-05 10:16:41 +01:00
|
|
|
sha256 = "18d8dfe31bf0cb53d58694903e526be68f3cf48e6e3c6dfbbc1e7042b1693af7";
|
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;
|
|
|
|
};
|
|
|
|
}
|