python3Packages.ibis-framework: patch pyproject.toml to get tests working

main
Phillip Cloud 2 years ago
parent 07eb8d105a
commit 50f68acae7
No known key found for this signature in database
GPG Key ID: D908212070FD785E
  1. 9
      pkgs/development/python-modules/ibis-framework/default.nix

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, pythonOlder
, pytestCheckHook
, atpublic
@ -73,6 +74,14 @@ buildPythonPackage rec {
hash = "sha256-7ywDMAHQAl39kiHfxVkq7voUEKqbb9Zq8qlaug7+ukI=";
};
patches = [
(fetchpatch {
url = "https://github.com/ibis-project/ibis/commit/a6f64c6c32b49098d39bb205952cbce4bdfea657.patch";
sha256 = "sha256-puVMjiJXWk8C9yhuXPD9HKrgUBYcYmUPacQz5YO5xYQ=";
includes = [ "pyproject.toml" ];
})
];
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [

Loading…
Cancel
Save