1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "pycryptodomex";
8 version = "3.11.0";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "0398366656bb55ebdb1d1d493a7175fc48ade449283086db254ac44c7d318d6d";
13 };
14
15 pythonImportsCheck = [ "Cryptodome" ];
16
17 meta = with lib; {
18 description = "A self-contained cryptographic library for Python";
19 homepage = "https://www.pycryptodome.org";
20 license = licenses.bsd2;
21 maintainers = with maintainers; [ fab ];
22 };
23}