1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, pkgs
5}:
6
7buildPythonPackage rec {
8 pname = "ecdsa";
9 version = "0.13.2";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "5c034ffa23413ac923541ceb3ac14ec15a0d2530690413bff58c12b80e56d884";
14 };
15
16 # Only needed for tests
17 checkInputs = [ pkgs.openssl ];
18
19 meta = with stdenv.lib; {
20 description = "ECDSA cryptographic signature library";
21 homepage = "https://github.com/warner/python-ecdsa";
22 license = licenses.mit;
23 maintainers = with maintainers; [ aszlig ];
24 };
25
26}