electrum: initial expression
Electrum is a Bitcoin thin-wallet. https://electrum.org
This commit is contained in:
18
pkgs/development/python-modules/ecdsa/default.nix
Normal file
18
pkgs/development/python-modules/ecdsa/default.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
{ stdenv, fetchurl, buildPythonPackage, openssl }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "ecdsa-0.11";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/e/ecdsa/${name}.tar.gz";
|
||||
sha256 = "134mbq5xsvx54k9xm7zrizvh9imxmcz1w9mhyfr99p4i7wcnqfwf";
|
||||
};
|
||||
|
||||
buildInputs = [ openssl ];
|
||||
|
||||
meta = {
|
||||
homepage = "http://github.com/warner/python-ecdsa";
|
||||
description = "pure-python ECDSA signature/verification";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
};
|
||||
}
|
||||
16
pkgs/development/python-modules/slowaes/default.nix
Normal file
16
pkgs/development/python-modules/slowaes/default.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
{ stdenv, fetchurl, buildPythonPackage }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "slowaes-0.1a1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/s/slowaes/${name}.tar.gz";
|
||||
sha256 = "83658ae54cc116b96f7fdb12fdd0efac3a4e8c7c7064e3fac3f4a881aa54bf09";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = "http://code.google.com/p/slowaes/";
|
||||
description = "AES implemented in pure python";
|
||||
license = stdenv.lib.licenses.apache;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user