mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-04 16:51:40 -05:00
don't match macos version of rusty-rlp package
- add 10_8 and 10_7 to macos version list
This commit is contained in:
parent
f0cc43e09f
commit
60280ea8e1
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ let
|
|||
filtered = builtins.filter filterWheel filesWithoutSources;
|
||||
choose = files:
|
||||
let
|
||||
osxMatches = [ "10_12" "10_11" "10_10" "10_9" "any" ];
|
||||
osxMatches = [ "10_12" "10_11" "10_10" "10_9" "10_8" "10_7" "any" ];
|
||||
linuxMatches = [ "manylinux1_" "manylinux2010_" "manylinux2014_" "any" ];
|
||||
chooseLinux = x: lib.take 1 (findBestMatches linuxMatches x);
|
||||
chooseOSX = x: lib.take 1 (findBestMatches osxMatches x);
|
||||
|
|
Loading…
Add table
Reference in a new issue