pythonPackages.ed25519: move to pkgs/development/python-modules
This commit is contained in:
19
pkgs/development/python-modules/ed25519/default.nix
Normal file
19
pkgs/development/python-modules/ed25519/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user