python3Packages.pytest-examples: patch the build

https://hydra.nixos.org/build/306511131/nixlog/3/tail

Changed files
+8
pkgs
development
python-modules
pytest-examples
+8
pkgs/development/python-modules/pytest-examples/default.nix
···
lib,
buildPythonPackage,
fetchFromGitHub,
+
fetchpatch,
hatchling,
pytest,
black,
···
tag = "v${version}";
hash = "sha256-ZnDl0B7/oLX6PANrqsWtVJwe4E/+7inCgOpo7oSeZlw=";
};
+
+
patches = [
+
(fetchpatch {
+
url = "https://github.com/pydantic/pytest-examples/pull/65/commits/60ae70d05ee345b38c2d2048d36b4a4545c98b6b.diff";
+
hash = "sha256-Rhrg0zVChwwa7Gk+WYrCu44VgUQmxLBeq8pWSF6Nzdo=";
+
})
+
];
build-system = [
hatchling