python310Packages.pyairvisual: remove postPatch section

- update disabled
This commit is contained in:
Fabian Affolter 2023-12-21 21:25:34 +01:00 committed by GitHub
parent 062a0f6f61
commit e016ac8b74
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,7 +19,7 @@ buildPythonPackage rec {
version = "2023.12.0";
pyproject = true;
disabled = pythonOlder "3.9";
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "bachya";
@ -28,12 +28,6 @@ buildPythonPackage rec {
hash = "sha256-uN31LeHYmg4V6Ln3EQp765nOsN5v56TxjYSS/g6TUCY=";
};
postPatch = ''
substituteInPlace pyproject.toml --replace \
'certifi = ">=2023.07.22"' \
'certifi = "*"'
'';
nativeBuildInputs = [
poetry-core
];