nixpkgs/pkgs/development/python-modules/ecdsa/default.nix

27 lines
543 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, pkgs
}:
buildPythonPackage rec {
pname = "ecdsa";
2019-10-16 10:43:06 +01:00
version = "0.13.3";
src = fetchPypi {
inherit pname version;
2019-10-16 10:43:06 +01:00
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 ];
};
}