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