python3Packages.blockfrost-python: patch version number

This commit is contained in:
t4ccer
2025-02-27 16:56:01 -07:00
parent 7276d27bb5
commit 41f973ccb1
@@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch2,
# Python deps
requests,
setuptools,
@@ -20,11 +21,22 @@ buildPythonPackage rec {
hash = "sha256-mN26QXxizDR+o2V5C2MlqVEbRns1BTmwZdUnnHNcFzw=";
};
propagatedBuildInputs = [
requests
patches = [
(fetchpatch2 {
name = "blockfrost-python-fix-version";
url = "https://github.com/blockfrost/blockfrost-python/commit/02fdc67ff6d1333c0855e740114585852bbfa0bc.patch?full_index=1";
hash = "sha256-070tnWxOnVNsCYXmBFo39JUgQDqphdpqx3A9OIuC94U=";
})
];
build-system = [
setuptools
];
dependencies = [
requests
];
pythonImportsCheck = [ "blockfrost" ];
meta = with lib; {