fix: restore to v2.2.2

This commit is contained in:
Jorrit van der Heide 2025-12-05 11:47:04 +01:00
parent 2b9dbf1736
commit 4f0aae0715
2 changed files with 5 additions and 7 deletions

View file

@ -17,14 +17,12 @@
meshcore = python3Packages.buildPythonPackage rec {
pname = "meshcore";
version = "2.2.1";
version = "2.2.2";
pyproject = true;
src = pkgs.fetchFromGitHub {
owner = "meshcore-dev";
repo = "meshcore_py";
rev = "v${version}";
sha256 = "sha256-Qjwi7JrSyk5wWM63OdFykB850+hquWDD9p4fZFfbI70=";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "sha256-vn/vF4avMDwDLL0EMVrrMWkZrZ1GTiUxGyTBOtKvG1I=";
};
build-system = [ python3Packages.hatchling ];