summary refs log tree commit diff
path: root/pkgs/development/python-modules/pycryptodomex/default.nix
blob: fae49e7be0a779c2a9b2948f462355548c8b18ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "pycryptodomex";
  version = "3.10.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-VBzT4+JS+xmntI9CC3mLU0gzArf+TZlUyUdgXQomPWI=";
  };

  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 ];
  };
}