Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / ecdsa / default.nix
blobba5fa836c21b1df33514554d48bd735c6a6fa261
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pkgs
5 , six
6 }:
8 buildPythonPackage rec {
9   pname = "ecdsa";
10   version = "0.18.0";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-GQNIBBVZ4hsiodZc7khSgsoRpvgdUD/duE1QF+ntHkk=";
15   };
17   propagatedBuildInputs = [ six ];
18   # Only needed for tests
19   nativeCheckInputs = [ pkgs.openssl ];
21   meta = with lib; {
22     description = "ECDSA cryptographic signature library";
23     homepage = "https://github.com/warner/python-ecdsa";
24     license = licenses.mit;
25   };