nixpkgs/pkgs/development/python-modules/py-ecc/default.nix
2023-07-23 19:30:22 +02:00

44 lines
825 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, cached-property
, eth-typing
, eth-utils
, mypy-extensions
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "py-ecc";
version = "6.0.0";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "ethereum";
repo = "py_ecc";
rev = "v${version}";
hash = "sha256-638otYA3e/Ld4mcM69yrqHQnGoK/Sfl/UA9FWnjgO/U=";
};
propagatedBuildInputs = [
cached-property
eth-typing
eth-utils
mypy-extensions
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "py_ecc" ];
meta = with lib; {
description = "ECC pairing and bn_128 and bls12_381 curve operations";
homepage = "https://github.com/ethereum/py_ecc";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}