2018-07-20 17:44:44 -07:00
|
|
|
{ stdenv, fetchPypi, buildPythonPackage }:
|
2016-11-24 14:35:41 -08:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2020-07-31 01:56:44 -07:00
|
|
|
version = "3.9.8";
|
2017-05-27 02:25:35 -07:00
|
|
|
pname = "pycryptodome";
|
2016-11-24 14:35:41 -08:00
|
|
|
|
2018-06-23 06:27:58 -07:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-07-31 01:56:44 -07:00
|
|
|
sha256 = "0e24171cf01021bc5dc17d6a9d4f33a048f09d62cc3f62541e95ef104588bda4";
|
2016-11-24 14:35:41 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://www.pycryptodome.org/";
|
2016-11-24 14:35:41 -08:00
|
|
|
description = "Python Cryptography Toolkit";
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
};
|
|
|
|
}
|