2014-03-23 15:22:57 +00:00
|
|
|
{ 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";
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Pure-python ECDSA signature/verification";
|
2014-03-23 15:22:57 +00:00
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
};
|
2014-08-24 15:21:08 +01:00
|
|
|
}
|