pythonPackages.ed25519: move to pkgs/development/python-modules

This commit is contained in:
rnhmjoj
2017-05-31 22:59:52 +02:00
parent f93dfd5259
commit 3463dd1c7b
2 changed files with 21 additions and 11 deletions

View File

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