python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / ed25519-blake2b / default.nix
bloba034bbb6424b869ddf04794a7937642d3c25a244
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6   setuptools,
7 }:
9 buildPythonPackage rec {
10   pname = "ed25519-blake2b";
11   version = "1.4.1";
12   pyproject = true;
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-cx6fk80awaZGSVdfNRmpn/4LseTPe/X18L5ROjnfc2M=";
19   };
21   nativeBuildInputs = [ setuptools ];
23   pythonImportsCheck = [ "ed25519_blake2b" ];
25   meta = with lib; {
26     description = "Ed25519 public-key signatures (BLAKE2b fork)";
27     mainProgram = "edsig";
28     homepage = "https://github.com/Matoking/python-ed25519-blake2b";
29     changelog = "https://github.com/Matoking/python-ed25519-blake2b/releases/tag/${version}";
30     license = licenses.mit;
31     maintainers = with maintainers; [
32       onny
33       stargate01
34     ];
35   };