poetry2nix: 1.2.0 -> 1.2.1

wip/yesman
adisbladis 5 years ago
parent 7750fd5555
commit 1282b60452
No known key found for this signature in database
GPG Key ID: 110BFAD44C6249B7
  1. 20
      pkgs/development/tools/poetry2nix/poetry2nix/lib.nix

@ -30,7 +30,25 @@ let
in
(builtins.foldl' combine initial tokens).state;
readTOML = path: builtins.fromTOML (builtins.readFile path);
fromTOML = toml: if builtins.hasAttr "fromTOML" builtins then builtins.fromTOML toml else
builtins.fromJSON (
builtins.readFile (
pkgs.runCommand "from-toml"
{
inherit toml;
allowSubstitutes = false;
preferLocalBuild = true;
}
''
${pkgs.remarshal}/bin/remarshal \
-if toml \
-i <(echo "$toml") \
-of json \
-o $out
''
)
);
readTOML = path: fromTOML (builtins.readFile path);
#
# Returns the appropriate manylinux dependencies and string representation for the file specified

Loading…
Cancel
Save