python3Packages.reflex-chakra: 0.7.1 -> 0.8.2post1

Changelog: https://github.com/reflex-dev/reflex-chakra/releases/tag/v0.8.2post1
This commit is contained in:
Peder Bergebakken Sundt
2025-08-15 00:40:04 +02:00
parent 328363ddbf
commit 4b94daa08c
@@ -3,6 +3,7 @@
buildPythonPackage,
fetchFromGitHub,
hatchling,
uv-dynamic-versioning,
pythonOlder,
reflex,
pytestCheckHook,
@@ -10,7 +11,7 @@
buildPythonPackage rec {
pname = "reflex-chakra";
version = "0.7.1";
version = "0.8.2post1";
pyproject = true;
disabled = pythonOlder "3.9";
@@ -19,11 +20,19 @@ buildPythonPackage rec {
owner = "reflex-dev";
repo = "reflex-chakra";
tag = "v${version}";
hash = "sha256-dAenwsFhRj9BzdGyaC38TwBWog95H0mSA0ullt4otHA=";
hash = "sha256-DugZRZpGP90EFkBjpAS1XkjrNPG6WWwCQPUcEZJ0ff8=";
};
build-system = [ hatchling ];
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail ', "uv-dynamic-versioning"' "" \
--replace-fail 'source = "uv-dynamic-versioning"' 'source = "env"${"\n"}variable = "version"'
'';
build-system = [
hatchling
uv-dynamic-versioning
];
dependencies = [ reflex ];
pythonImportsCheck = [ "reflex_chakra" ];