mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 13:19:10 +03:00
19 lines
436 B
Nix
19 lines
436 B
Nix
{ lib, buildPythonPackage, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pycryptodomex";
|
|
name = "${pname}-${version}";
|
|
version = "3.4.5";
|
|
|
|
meta = {
|
|
description = "A self-contained cryptographic library for Python";
|
|
homepage = https://www.pycryptodome.org;
|
|
license = lib.licenses.bsd2;
|
|
};
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1n5w5ls5syapmb39kavqgz2sa9pinzx4c9dvwa2147gj0hkh87wj";
|
|
};
|
|
}
|