nixpkgs/pkgs/development/python-modules/ed25519/default.nix
R. RyanTM 0192972ab0 python37Packages.ed25519: 1.4 -> 1.5
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-ed25519/versions
2019-10-08 00:15:35 -07:00

19 lines
447 B
Nix

{ stdenv, fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
pname = "ed25519";
version = "1.5";
src = fetchPypi {
inherit pname version;
sha256 = "0n1k83ww0pr4q6z0h7p8hvy21hcgb96jvgllfbwhvvyf37h3w182";
};
meta = with stdenv.lib; {
description = "Ed25519 public-key signatures";
homepage = https://github.com/warner/python-ed25519;
license = licenses.mit;
maintainers = with maintainers; [ np ];
};
}