python310Packages.ed25519-blake2: init at 1.4
This commit is contained in:
parent
86ee52f4aa
commit
198f522965
27
pkgs/development/python-modules/ed25519-blake2b/default.nix
Normal file
27
pkgs/development/python-modules/ed25519-blake2b/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user