electrum: initial expression

Electrum is a Bitcoin thin-wallet.
https://electrum.org
This commit is contained in:
Emery Hemingway
2014-03-23 11:22:57 -04:00
parent ae8a8b5deb
commit e91daf327d
4 changed files with 72 additions and 0 deletions

View 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;
};
}