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