about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pycryptodomex/default.nix
blob: eab3a6b0bbd58a63df25173229771d5b038a7629 (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.11.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0398366656bb55ebdb1d1d493a7175fc48ade449283086db254ac44c7d318d6d";
  };

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