about summary refs log tree commit diff
path: root/pkgs/development/python-modules/ecdsa/default.nix
blob: 825cc0df56ca0b4b0bd8f769654d58b3f25831a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv
, buildPythonPackage
, fetchPypi
, pkgs
}:

buildPythonPackage rec {
  pname = "ecdsa";
  version = "0.13.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "163c80b064a763ea733870feb96f9dd9b92216cfcacd374837af18e4e8ec3d4d";
  };

  # Only needed for tests
  checkInputs = [ pkgs.openssl ];

  meta = with stdenv.lib; {
    description = "ECDSA cryptographic signature library";
    homepage = "https://github.com/warner/python-ecdsa";
    license = licenses.mit;
    maintainers = with maintainers; [ aszlig ];
  };

}