mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 06:23:36 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
44 lines
843 B
Nix
44 lines
843 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}";
|
|
sha256 = "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; [ SuperSandro2000 ];
|
|
};
|
|
}
|