pythonPackages.ed25519: move to pkgs/development/python-modules
This commit is contained in:
parent
f93dfd5259
commit
3463dd1c7b
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -29642,18 +29642,9 @@ EOF
|
|||||||
|
|
||||||
semver = callPackage ../development/python-modules/semver { };
|
semver = callPackage ../development/python-modules/semver { };
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
ed25519 = callPackage ../development/python-modules/ed25519 { };
|
||||||
url = "mirror://pypi/e/ed25519/${name}.tar.gz";
|
|
||||||
sha256 = "0ahx1nkxa0xis3cw0h5c4fpgv8mq4znkq7kajly33lc3317bk499";
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = {
|
trezor = callPackage ../development/python-modules/trezor { };
|
||||||
description = "Ed25519 public-key signatures";
|
|
||||||
homepage = "https://github.com/warner/python-ed25519";
|
|
||||||
license = licenses.mit;
|
|
||||||
maintainers = with maintainers; [ np ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
trezor_agent = buildPythonPackage rec{
|
trezor_agent = buildPythonPackage rec{
|
||||||
name = "${pname}-${version}";
|
name = "${pname}-${version}";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user