python3Packages.xeddsa: 1.1.0 -> 1.1.1

Changed files
+4 -7
pkgs
development
python-modules
xeddsa
+4 -7
pkgs/development/python-modules/xeddsa/default.nix
···
libsodium,
libxeddsa,
pytestCheckHook,
+
pytest-cov-stub,
nix-update-script,
}:
buildPythonPackage rec {
pname = "xeddsa";
-
version = "1.1.0";
+
version = "1.1.1";
pyproject = true;
src = fetchFromGitHub {
owner = "Syndace";
repo = "python-xeddsa";
tag = "v${version}";
-
hash = "sha256-636zsJXD8EtLDXMIkJTON0g3sg0EPrMzcfR7SUrURac=";
+
hash = "sha256-5s6ERazWnwYEc0d5e+eSdvOCTklBQVrjzvlNifC2zKU=";
};
-
postPatch = ''
-
substituteInPlace pyproject.toml \
-
--replace-fail "setuptools<74" "setuptools"
-
'';
-
passthru.updateScript = nix-update-script { };
build-system = [ setuptools ];
···
nativeCheckInputs = [
pytestCheckHook
+
pytest-cov-stub
];
pythonImportsCheck = [ "xeddsa" ];