Unverified Commit 44a60bdc authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

python3Packages.libparse-python: refactor and add updateScript (#489522)

parents 36943a2a e8a70786
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -5,9 +5,10 @@
  pytestCheckHook,
  setuptools,
  pybind11,
  unstableGitUpdater,
}:

buildPythonPackage {
buildPythonPackage (finalAttrs: {
  pname = "libparse-python";
  version = "0-unstable-2025-08-30";
  pyproject = true;
@@ -38,6 +39,8 @@ buildPythonPackage {

  pythonImportsCheck = [ "libparse" ];

  passthru.updateScript = unstableGitUpdater { };

  meta = {
    description = "Python library for parsing Yosys output";
    homepage = "https://github.com/librelane/libparse-python";
@@ -45,4 +48,4 @@ buildPythonPackage {
    maintainers = with lib.maintainers; [ gonsolo ];
    platforms = lib.platforms.linux;
  };
}
})