summary refs log tree commit diff
path: root/pkgs/development/python-modules/eth-hash
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2021-04-03 17:37:37 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2021-04-03 17:56:15 +0200
commit9004e0dac3a45d0085281219198ae638108182d5 (patch)
treee21dedecc3f1108fdd007d07e9f88b3ca2e3948f /pkgs/development/python-modules/eth-hash
parent53198a47d14a8bd75a6d0bec8ffbc6b5f479812a (diff)
downloadnixpkgs-9004e0dac3a45d0085281219198ae638108182d5.tar
nixpkgs-9004e0dac3a45d0085281219198ae638108182d5.tar.gz
nixpkgs-9004e0dac3a45d0085281219198ae638108182d5.tar.bz2
nixpkgs-9004e0dac3a45d0085281219198ae638108182d5.tar.lz
nixpkgs-9004e0dac3a45d0085281219198ae638108182d5.tar.xz
nixpkgs-9004e0dac3a45d0085281219198ae638108182d5.tar.zst
nixpkgs-9004e0dac3a45d0085281219198ae638108182d5.zip
python3Packages.eth-hash: break circular dependency
Diffstat (limited to 'pkgs/development/python-modules/eth-hash')
-rw-r--r--pkgs/development/python-modules/eth-hash/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/eth-hash/default.nix b/pkgs/development/python-modules/eth-hash/default.nix
index 0f3f5f1a645..da57aa50e07 100644
--- a/pkgs/development/python-modules/eth-hash/default.nix
+++ b/pkgs/development/python-modules/eth-hash/default.nix
@@ -15,12 +15,16 @@ buildPythonPackage rec {
   checkInputs = [ pytest ];
 
   propagatedBuildInputs = [
-    eth-utils
     pysha3
     pycrypto
     pycryptodome
   ];
 
+  pipInstallFlags = [
+    # Circular dependency on eth-utils
+    "--no-dependencies"
+  ];
+
   # setuptools-markdown uses pypandoc which is broken at the moment
   preConfigure = ''
     substituteInPlace setup.py --replace \'setuptools-markdown\' ""