python312Packages.markdownify: fix build (#353872)

This commit is contained in:
Sandro 2024-11-06 10:09:54 +01:00 committed by GitHub
commit 7136414773
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,7 +2,7 @@
lib,
beautifulsoup4,
buildPythonPackage,
fetchPypi,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
setuptools,
@ -17,9 +17,11 @@ buildPythonPackage rec {
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-qyV/nmvUB1EYgoooydAvikv+t0IfVYg0qnmy3+syoJg=";
src = fetchFromGitHub {
owner = "matthewwithanm";
repo = "python-markdownify";
rev = "refs/tags/${version}";
hash = "sha256-EqQ4DKIGaMNivw9cWCSP/Mh+1YxyTaHGPYRjGxPFOnA=";
};
build-system = [