mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 08:05:40 +00: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";
|
||
|
};
|
||
|
}
|