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
No known key found for this signature in database
GPG key ID: 362BB82B7E496B7C
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 ];
};
}

View file

@ -29642,18 +29642,9 @@ EOF
semver = callPackage ../development/python-modules/semver { };
src = pkgs.fetchurl {
url = "mirror://pypi/e/ed25519/${name}.tar.gz";
sha256 = "0ahx1nkxa0xis3cw0h5c4fpgv8mq4znkq7kajly33lc3317bk499";
};
ed25519 = callPackage ../development/python-modules/ed25519 { };
meta = {
description = "Ed25519 public-key signatures";
homepage = "https://github.com/warner/python-ed25519";
license = licenses.mit;
maintainers = with maintainers; [ np ];
};
};
trezor = callPackage ../development/python-modules/trezor { };
trezor_agent = buildPythonPackage rec{
name = "${pname}-${version}";