mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-01 01:33:20 +00:00
Merge pull request #243496 from dotlambda/piston-cli-python310
piston-cli: use Python 3.10
This commit is contained in:
commit
0734b7d3df
@ -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;
|
||||
|
@ -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 { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user