linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pycryptodomex / default.nix
blobfae49e7be0a779c2a9b2948f462355548c8b18ba
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "pycryptodomex";
8   version = "3.10.1";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "sha256-VBzT4+JS+xmntI9CC3mLU0gzArf+TZlUyUdgXQomPWI=";
13   };
15   pythonImportsCheck = [ "Cryptodome" ];
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   };