pythonPackages.opentimestamps: relax bitcoinlib dependency

Upstream: https://github.com/opentimestamps/python-opentimestamps/pull/43

+9 -1
+9 -1
pkgs/development/python-modules/opentimestamps/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, isPy3k 2 , bitcoinlib, GitPython, pysha3, git }: 3 4 buildPythonPackage rec { ··· 14 rev = "python-opentimestamps-v${version}"; 15 sha256 = "0c45ij8absfgwizq6dfgg81siq3y8605sgg184vazp292w8nqmqr"; 16 }; 17 18 # Remove a failing test which expects the test source file to reside in the 19 # project's Git repo
··· 1 + { lib, buildPythonPackage, fetchFromGitHub, fetchpatch, isPy3k 2 , bitcoinlib, GitPython, pysha3, git }: 3 4 buildPythonPackage rec { ··· 14 rev = "python-opentimestamps-v${version}"; 15 sha256 = "0c45ij8absfgwizq6dfgg81siq3y8605sgg184vazp292w8nqmqr"; 16 }; 17 + 18 + patches = [ 19 + # build against bitcoinlib-0.11 20 + (fetchpatch { 21 + url = "https://patch-diff.githubusercontent.com/raw/opentimestamps/python-opentimestamps/pull/43.patch"; 22 + sha256 = "0bxzk4pzpqk7zrk2x7vn2bj2n3pc5whf8ijbd225s6674q450zbg"; 23 + }) 24 + ]; 25 26 # Remove a failing test which expects the test source file to reside in the 27 # project's Git repo