2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-16 19:20:52 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pkgs
|
2019-12-20 16:31:45 +00:00
|
|
|
, six
|
2018-10-16 19:20:52 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "ecdsa";
|
2021-06-18 22:47:15 +01:00
|
|
|
version = "0.17.0";
|
2018-10-16 19:20:52 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-06-18 22:47:15 +01:00
|
|
|
sha256 = "b9f500bb439e4153d0330610f5d26baaf18d17b8ced1bc54410d189385ea68aa";
|
2018-10-16 19:20:52 +01:00
|
|
|
};
|
|
|
|
|
2019-12-20 16:31:45 +00:00
|
|
|
propagatedBuildInputs = [ six ];
|
2018-10-16 19:20:52 +01:00
|
|
|
# Only needed for tests
|
2019-01-05 10:54:27 +00:00
|
|
|
checkInputs = [ pkgs.openssl ];
|
2018-10-16 19:20:52 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-10-16 19:20:52 +01:00
|
|
|
description = "ECDSA cryptographic signature library";
|
|
|
|
homepage = "https://github.com/warner/python-ecdsa";
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|