Unverified Commit 0734b7d3 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

Merge pull request #243496 from dotlambda/piston-cli-python310

piston-cli: use Python 3.10
parents 110489e1 6d157073
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -18,13 +18,14 @@ python3Packages.buildPythonApplication rec {

  nativeBuildInputs = with python3Packages; [
    poetry-core
    pythonRelaxDepsHook
  ];

  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace 'rich = "^10.1.0"' 'rich = "*"' \
      --replace 'PyYAML = "^5.4.1"' 'PyYAML = "*"'
  '';
  pythonRelaxDeps = [
    "rich"
    "more-itertools"
    "PyYAML"
  ];

  meta = with lib; {
    broken = stdenv.isDarwin;
+1 −1
Original line number Diff line number Diff line
@@ -34177,7 +34177,7 @@ with pkgs;
  pistol = callPackage ../tools/misc/pistol { };
  piston-cli = callPackage ../tools/misc/piston-cli { python3Packages = python39Packages; };
  piston-cli = callPackage ../tools/misc/piston-cli { };
  pizarra = callPackage ../applications/graphics/pizarra { };