f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
20 lines
479 B
Nix
20 lines
479 B
Nix
{ 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 ];
|
|
};
|
|
}
|