Merge pull request #288869 from Infinidoge/fix/grip

grip: apply upstream patch to fix build failure
This commit is contained in:
Maximilian Bosch 2024-02-15 22:47:21 +01:00 committed by GitHub
commit 0d3593bffb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,5 +1,6 @@
{ lib
, fetchFromGitHub
, fetchpatch
# Python bits:
, buildPythonPackage
, pytest
@ -25,6 +26,15 @@ buildPythonPackage rec {
hash = "sha256-CHL2dy0H/i0pLo653F7aUHFvZHTeZA6jC/rwn1KrEW4=";
};
patches = [
# https://github.com/NixOS/nixpkgs/issues/288478
(fetchpatch {
name = "set-default-encoding.patch";
url = "https://github.com/joeyespo/grip/commit/2784eb2c1515f1cdb1554d049d48b3bff0f42085.patch";
hash = "sha256-veVJKJtt8mP1jmseRD7pNR3JgIxX1alYHyQok/rBpiQ=";
})
];
nativeCheckInputs = [ pytest responses ];
propagatedBuildInputs = [ docopt flask markdown path-and-address pygments requests tabulate ];