Unverified Commit b5382a73 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python313Packages.pyhik: 0.4.1 -> 0.4.2 (#486446)

parents 3cc10cd8 a4d7d7f8
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -7,16 +7,16 @@
  setuptools,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "pyhik";
  version = "0.4.1";
  version = "0.4.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "mezz64";
    repo = "pyHik";
    tag = version;
    hash = "sha256-dDUaNeE0wjKsojeezKVWfMBPO+7O5e2QFOHnh3UoFbY=";
    tag = finalAttrs.version;
    hash = "sha256-ree2UbGfmz4Xs0aRiAWcOnCEpnrjR11PBmo/hMnbnlI=";
  };

  build-system = [
@@ -44,4 +44,4 @@ buildPythonPackage rec {
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.jamiemagee ];
  };
}
})