Unverified Commit f55d8497 authored by quantenzitrone's avatar quantenzitrone
Browse files

doge: 3.9.0 -> 3.9.2

3.9.2 is functionally the same as 3.9.0
but it prevents r-ryantm from trying to update to 3.9.1
see https://github.com/NixOS/nixpkgs/pull/493917#issuecomment-3962269649
closes https://github.com/NixOS/nixpkgs/pull/496965
parent 1a0fccf8
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -5,14 +5,14 @@
}:
python3Packages.buildPythonApplication (finalAttrs: {
  pname = "doge";
  version = "3.9.0";
  version = "3.9.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "Olivia5k";
    repo = "doge";
    tag = finalAttrs.version;
    hash = "sha256-aJ1SFehjKiSc7osf5BOB1xjDnrkVXp37PQ5bNpbv1Mk=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-I/wvwl+I6qclFSGlIIXexyw6ADs9+/MdI4PAb07QwGA=";
  };

  build-system = [ python3Packages.hatchling ];