about summary refs log tree commit diff
path: root/pkgs/development/python-modules/ed25519/default.nix
blob: 80e405313cbc001277f4cd3217423a56c4ab83e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  fetchpatch,
  pythonOlder,
  setuptools,
  versioneer,
}:

buildPythonPackage rec {
  pname = "ed25519";
  version = "1.5";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "warner";
    repo = "python-ed25519";
    rev = "refs/tags/${version}";
    hash = "sha256-AwnhB5UGycQliNndbqd0JlI4vKSehCSy0qHv2EiB+jA=";
  };

  postPatch = ''
    rm versioneer.py
  '';

  build-system = [
    setuptools
    versioneer
  ];

  pythonImportsCheck = [
    "ed25519"
  ];

  meta = with lib; {
    description = "Ed25519 public-key signatures";
    mainProgram = "edsig";
    homepage = "https://github.com/warner/python-ed25519";
    changelog = "https://github.com/warner/python-ed25519/blob/${version}/NEWS";
    license = licenses.mit;
    maintainers = with maintainers; [ np ];
  };
}