2021-02-24 22:31:28 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
2017-08-31 20:04:37 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pycryptodomex";
|
2021-02-19 21:31:17 +00:00
|
|
|
version = "3.10.1";
|
2017-08-31 20:04:37 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-02-19 21:31:17 +00:00
|
|
|
sha256 = "sha256-VBzT4+JS+xmntI9CC3mLU0gzArf+TZlUyUdgXQomPWI=";
|
2017-08-31 20:04:37 +01:00
|
|
|
};
|
2021-02-24 22:31:28 +00:00
|
|
|
|
|
|
|
pythonImportsCheck = [ "Cryptodome" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A self-contained cryptographic library for Python";
|
|
|
|
homepage = "https://www.pycryptodome.org";
|
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
2017-08-31 20:04:37 +01:00
|
|
|
}
|