summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/py-ecc/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/py-ecc/default.nix')
-rw-r--r--pkgs/development/python-modules/py-ecc/default.nix29
1 files changed, 13 insertions, 16 deletions
diff --git a/pkgs/development/python-modules/py-ecc/default.nix b/pkgs/development/python-modules/py-ecc/default.nix
index d7769ea4873d..2e2f1dd1bb16 100644
--- a/pkgs/development/python-modules/py-ecc/default.nix
+++ b/pkgs/development/python-modules/py-ecc/default.nix
@@ -1,13 +1,14 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, cached-property
-, eth-typing
-, eth-utils
-, pytestCheckHook
-, pythonAtLeast
-, pythonOlder
-, setuptools
+{
+ lib,
+ buildPythonPackage,
+ fetchFromGitHub,
+ cached-property,
+ eth-typing,
+ eth-utils,
+ pytestCheckHook,
+ pythonAtLeast,
+ pythonOlder,
+ setuptools,
}:
buildPythonPackage rec {
@@ -23,9 +24,7 @@ buildPythonPackage rec {
hash = "sha256-DKe+bI1GEzXg4Y4n5OA1/hWYz9L3X1AvaOFPEnCaAfs=";
};
- nativeBuildInputs = [
- setuptools
- ];
+ nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
cached-property
@@ -33,9 +32,7 @@ buildPythonPackage rec {
eth-utils
];
- nativeCheckInputs = [
- pytestCheckHook
- ];
+ nativeCheckInputs = [ pytestCheckHook ];
disabledTests = lib.optionals (pythonAtLeast "3.12") [
# https://github.com/ethereum/py_ecc/issues/133