python312Packages.ed25519: disable

This commit is contained in:
Martin Weinelt 2024-03-26 16:27:59 +01:00
parent 1cc5891098
commit e4156a9b61
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
1 changed files with 4 additions and 1 deletions

View File

@ -1,10 +1,13 @@
{ lib, fetchPypi, buildPythonPackage }:
{ lib, fetchPypi, buildPythonPackage, pythonAtLeast }:
buildPythonPackage rec {
pname = "ed25519";
version = "1.5";
format = "setuptools";
# last commit in 2019, various compat issues with 3.12
disabled = pythonAtLeast "3.12";
src = fetchPypi {
inherit pname version;
sha256 = "0n1k83ww0pr4q6z0h7p8hvy21hcgb96jvgllfbwhvvyf37h3w182";