mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
19 lines
449 B
Nix
19 lines
449 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 ];
|
|
};
|
|
}
|