18 lines
416 B
Nix
18 lines
416 B
Nix
{ lib, buildPythonPackage, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pycryptodomex";
|
|
version = "3.7.3";
|
|
|
|
meta = {
|
|
description = "A self-contained cryptographic library for Python";
|
|
homepage = https://www.pycryptodome.org;
|
|
license = lib.licenses.bsd2;
|
|
};
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "b70fe991564e178af02ccf89435a8f9e8d052707a7c4b95bf6027cb785da3175";
|
|
};
|
|
}
|