2017-08-31 20:04:37 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pycryptodomex";
|
|
|
|
name = "${pname}-${version}";
|
2018-04-04 19:14:18 +01:00
|
|
|
version = "3.5.1";
|
2017-08-31 20:04:37 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A self-contained cryptographic library for Python";
|
|
|
|
homepage = https://www.pycryptodome.org;
|
|
|
|
license = lib.licenses.bsd2;
|
|
|
|
};
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-04-04 19:14:18 +01:00
|
|
|
sha256 = "bb60d38111ebc383a5a1c909545562926c66c846d03fc65ba7b8a3487cb23078";
|
2017-08-31 20:04:37 +01:00
|
|
|
};
|
|
|
|
}
|