2019-11-28 16:21:27 +01:00
|
|
|
{ pkgs ? import (fetchTarball https://nixos.org/channels/nixpkgs-unstable/nixexprs.tar.xz) {} }:
|
|
|
|
let
|
|
|
|
poetry = pkgs.callPackage ../pkgs/poetry { python = pkgs.python3; inherit poetry2nix; };
|
|
|
|
poetry2nix = import ./.. { inherit pkgs; inherit poetry; };
|
|
|
|
in
|
2019-12-11 13:31:22 +01:00
|
|
|
{
|
2019-12-13 15:24:23 +01:00
|
|
|
trivial = pkgs.callPackage ./trivial { inherit poetry2nix; };
|
2019-12-11 13:31:22 +01:00
|
|
|
override = pkgs.callPackage ./override-support { inherit poetry2nix; };
|
|
|
|
top-packages-1 = pkgs.callPackage ./common-pkgs-1 { inherit poetry2nix; };
|
|
|
|
top-packages-2 = pkgs.callPackage ./common-pkgs-2 { inherit poetry2nix; };
|
|
|
|
}
|