poetry2nix/overlay.nix
K900 47e42a4cf1 fix: always build poetry with current poetry2nix
So nothing leaks through from nixpkgs
2023-04-05 10:47:20 +03:00

7 lines
174 B
Nix

final: prev: {
poetry2nix = import ./default.nix { pkgs = final; };
poetry = prev.callPackage ./pkgs/poetry { python = final.python3; inherit (final) poetry2nix; };
}