about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/ed25519/default.nix
blob: 1ebfdcfc844d5353fba022724b978b7e13adb1b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, fetchPypi, buildPythonPackage }:

buildPythonPackage rec {
  pname = "ed25519";
  version = "1.5";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0n1k83ww0pr4q6z0h7p8hvy21hcgb96jvgllfbwhvvyf37h3w182";
  };

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