Unverified Commit c1cfd7b5 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

python313Packages.pynintendoparental: 2.3.0 -> 2.3.2 (#478501)

parents 50ea0f55 6b0f2eda
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -7,21 +7,21 @@
  setuptools,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "pynintendoparental";
  version = "2.3.0";
  version = "2.3.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "pantherale0";
    repo = "pynintendoparental";
    tag = version;
    hash = "sha256-gq81cdI/HegNs1llQkC4GbEzHzvEs6f4MrBtIK/G2SE=";
    tag = finalAttrs.version;
    hash = "sha256-jF1hoGNDwbbacJuLiFAdtaXOykzioUt++RQrYO1skkA=";
  };

  postPatch = ''
    substituteInPlace pynintendoparental/_version.py \
      --replace-fail '__version__ = "0.0.0"' '__version__ = "${version}"'
      --replace-fail '__version__ = "0.0.0"' '__version__ = "${finalAttrs.version}"'
  '';

  build-system = [ setuptools ];
@@ -37,10 +37,10 @@ buildPythonPackage rec {
  doCheck = false;

  meta = {
    changelog = "https://github.com/pantherale0/pynintendoparental/releases/tag/${src.tag}";
    changelog = "https://github.com/pantherale0/pynintendoparental/releases/tag/${finalAttrs.src.tag}";
    description = "Python module to interact with Nintendo Parental Controls";
    homepage = "https://github.com/pantherale0/pynintendoparental";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.dotlambda ];
  };
}
})