Merge pull request #275886 from r-ryantm/auto-update/python310Packages.pyairvisual

python310Packages.pyairvisual: 2023.11.0 -> 2023.12.0
This commit is contained in:
Fabian Affolter 2023-12-22 08:23:07 +01:00 committed by GitHub
commit d302ca2a00
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,24 +16,18 @@
buildPythonPackage rec {
pname = "pyairvisual";
version = "2023.11.0";
version = "2023.12.0";
pyproject = true;
disabled = pythonOlder "3.9";
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "bachya";
repo = "pyairvisual";
rev = "refs/tags/${version}";
hash = "sha256-69lLw+ZYQ4hfD6xsfq1DVTWCnbp7e+qexuW3osDUejg=";
hash = "sha256-uN31LeHYmg4V6Ln3EQp765nOsN5v56TxjYSS/g6TUCY=";
};
postPatch = ''
substituteInPlace pyproject.toml --replace \
'certifi = ">=2023.07.22"' \
'certifi = "*"'
'';
nativeBuildInputs = [
poetry-core
];