python313Packages.scrypt: 0.8.27 -> 0.8.29 (#430542)

Changed files
+9 -37
pkgs
applications
misc
electrum
development
python-modules
ciscoconfparse2
py-scrypt
scrypt
top-level
+2 -2
pkgs/applications/misc/electrum/ltc.nix
···
aiorpcx
attrs
bitstring
+
certifi
cryptography
dnspython
jsonrpclib-pelix
matplotlib
pbkdf2
protobuf
-
py-scrypt
pysocks
qrcode
requests
-
certifi
+
scrypt
# plugins
btchip-python
ckcc-protocol
+4 -2
pkgs/development/python-modules/ciscoconfparse2/default.nix
···
buildPythonPackage rec {
pname = "ciscoconfparse2";
-
version = "0.8.17";
+
version = "0.8.29";
pyproject = true;
src = fetchFromGitHub {
owner = "mpenning";
repo = "ciscoconfparse2";
tag = version;
-
hash = "sha256-G6FR2v/FJE0ySpNXJ9603O16UjSqOkRB2+7xNoLBJAM=";
+
hash = "sha256-Dvryv3VPdyRuvIPksEnSlKnCJU70j2xd2aWpwXUGbUY=";
};
pythonRelaxDeps = [
···
changelog = "https://github.com/mpenning/ciscoconfparse2/blob/${src.tag}/CHANGES.md";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ fab ];
+
# https://github.com/mpenning/ciscoconfparse2/issues/19
+
broken = lib.versionAtLeast hier-config.version "3";
};
}
-28
pkgs/development/python-modules/py-scrypt/default.nix
···
-
{
-
lib,
-
buildPythonPackage,
-
fetchPypi,
-
openssl,
-
}:
-
-
buildPythonPackage rec {
-
pname = "py-scrypt";
-
version = "0.8.27";
-
format = "setuptools";
-
-
src = fetchPypi {
-
pname = "scrypt";
-
inherit version;
-
hash = "sha256-p7Y3hI7VGMHqKzGp7Kqj9JYWWY2EQt6HBs8fAfur8Kc=";
-
};
-
-
buildInputs = [ openssl ];
-
doCheck = false;
-
-
meta = with lib; {
-
description = "Bindings for scrypt key derivation function library";
-
homepage = "https://pypi.python.org/pypi/scrypt";
-
maintainers = [ ];
-
license = licenses.bsd2;
-
};
-
}
+2 -2
pkgs/development/python-modules/scrypt/default.nix
···
buildPythonPackage rec {
pname = "scrypt";
-
version = "0.8.27";
+
version = "0.9.4";
pyproject = true;
src = fetchFromGitHub {
owner = "holgern";
repo = "py-scrypt";
tag = "v${version}";
-
hash = "sha256-r5tXRq4VFieqw3Plx6W5imDIeGIldW1BREdm6/Kav3M=";
+
hash = "sha256-4jVXaPD57RMe4ef1PVgZwPGAhEHL3RGlu2DSC6lGuR4=";
};
build-system = [ setuptools ];
+1 -1
pkgs/top-level/python-aliases.nix
···
Pyro5 = pyro5; # added 2023-02-19
PyRSS2Gen = pyrss2gen; # added 2023-02-19
pyruckus = throw "pyruckus has been removed, it was deprecrated in favor of aioruckus."; # added 2023-09-07
-
py_scrypt = py-scrypt; # added 2024-01-07
+
py-scrypt = scrypt; # added 2025-08-07
pysha3 = throw "pysha3 has been removed, use safe-pysha3 instead"; # added 2023-05-20
pysimplegui = throw "pysimplegui update to v5 broke the package, it now needs a license key to decrypt the source code"; # added 2024-09-16
pysmart-smartx = pysmart; # added 2021-10-22
-2
pkgs/top-level/python-packages.nix
···
py-schluter = callPackage ../development/python-modules/py-schluter { };
-
py-scrypt = callPackage ../development/python-modules/py-scrypt { };
-
py-serializable = callPackage ../development/python-modules/py-serializable { };
py-slvs = callPackage ../development/python-modules/py-slvs { };