Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / ed25519 / default.nix
blob47692075d3bc80733829e2ce90a3d3091df60130
1 { lib, fetchPypi, buildPythonPackage }:
3 buildPythonPackage rec {
4   pname = "ed25519";
5   version = "1.5";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "0n1k83ww0pr4q6z0h7p8hvy21hcgb96jvgllfbwhvvyf37h3w182";
10   };
12   meta = with lib; {
13     description = "Ed25519 public-key signatures";
14     homepage = "https://github.com/warner/python-ed25519";
15     license = licenses.mit;
16     maintainers = with maintainers; [ np ];
17   };