python310Packages.ed25519-blake2: init at 1.4

This commit is contained in:
Jonas Heinrich 2022-07-12 16:09:04 +02:00 committed by Christoph Honal
parent 86ee52f4aa
commit 198f522965
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib
, fetchPypi
, pythonOlder
, buildPythonPackage }:
buildPythonPackage rec {
pname = "ed25519-blake2b";
version = "1.4";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-0aHLkDLsMHzpW0HGGUQP1NP87MGPIkA1zH1tx6fY70A=";
};
pythonImportsCheck = [
"ed25519_blake2b"
];
meta = with lib; {
description = "Ed25519 public-key signatures (BLAKE2b fork)";
homepage = "https://github.com/Matoking/python-ed25519-blake2b";
license = licenses.mit;
maintainers = with maintainers; [ onny stargate01 ];
};
}

View file

@ -2913,6 +2913,8 @@ in {
ed25519 = callPackage ../development/python-modules/ed25519 { };
ed25519-blake2b = callPackage ../development/python-modules/ed25519-blake2b { };
edalize = callPackage ../development/python-modules/edalize { };
editables = callPackage ../development/python-modules/editables { };