7 buildPythonPackage rec {
8 pname = "starkbank-ecdsa";
11 src = fetchFromGitHub {
13 repo = "ecdsa-python";
15 sha256 = "03smk33zhmv1j1svgjnykak0jnw8yl0yv03i1gsasx71f33zmfwi";
18 checkInputs = [ pytestCheckHook ];
19 pytestFlagsArray = [ "-v tests/*.py" ];
20 pythonImportsCheck = [ "ellipticcurve" ];
23 description = "Python ECDSA library";
24 homepage = "https://github.com/starkbank/ecdsa-python";
25 license = with licenses; [ mit ];
26 maintainers = with maintainers; [ fab ];