Merge pull request #113794 from fabaff/bump-pycryptodomex

python3Packages.pycryptodomex: 3.9.9 -> 3.10.1
This commit is contained in:
davidak 2021-02-25 05:01:01 +01:00 committed by GitHub
commit a0d657f949
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,17 +1,23 @@
{ lib, buildPythonPackage, fetchPypi }:
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "pycryptodomex";
version = "3.9.9";
meta = {
description = "A self-contained cryptographic library for Python";
homepage = "https://www.pycryptodome.org";
license = lib.licenses.bsd2;
};
version = "3.10.1";
src = fetchPypi {
inherit pname version;
sha256 = "7b5b7c5896f8172ea0beb283f7f9428e0ab88ec248ce0a5b8c98d73e26267d51";
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 ];
};
}