diff options
Diffstat (limited to 'pkgs/development/python-modules/blockchain/default.nix')
-rw-r--r-- | pkgs/development/python-modules/blockchain/default.nix | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/blockchain/default.nix b/pkgs/development/python-modules/blockchain/default.nix index 96c6f4174179..445836cda78d 100644 --- a/pkgs/development/python-modules/blockchain/default.nix +++ b/pkgs/development/python-modules/blockchain/default.nix @@ -1,7 +1,8 @@ -{ lib -, buildPythonPackage -, fetchPypi -, future +{ + lib, + buildPythonPackage, + fetchPypi, + future, }: buildPythonPackage rec { @@ -18,9 +19,7 @@ buildPythonPackage rec { substituteInPlace setup.py --replace "enum-compat" "" ''; - propagatedBuildInputs = [ - future - ]; + propagatedBuildInputs = [ future ]; # tests are interacting with the API and not mocking the calls doCheck = false; |