2019-12-12 18:18:14 +01:00
|
|
|
{ pkgs ? import <nixpkgs> {} }:
|
2019-11-28 16:21:27 +01:00
|
|
|
let
|
|
|
|
poetry = pkgs.callPackage ../pkgs/poetry { python = pkgs.python3; inherit poetry2nix; };
|
|
|
|
poetry2nix = import ./.. { inherit pkgs; inherit poetry; };
|
2019-12-10 10:21:22 +01:00
|
|
|
|
|
|
|
pep425 = pkgs.callPackage ../pep425.nix {};
|
|
|
|
pep425Python37 = pkgs.callPackage ../pep425.nix { python = pkgs.python37; };
|
|
|
|
pep425OSX = pkgs.callPackage ../pep425.nix { isLinux = false; };
|
|
|
|
|
2019-11-28 16:21:27 +01:00
|
|
|
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; };
|
2020-01-02 21:56:08 +00:00
|
|
|
override-default = pkgs.callPackage ./override-default-support { inherit poetry2nix; };
|
2019-12-11 13:31:22 +01:00
|
|
|
top-packages-1 = pkgs.callPackage ./common-pkgs-1 { inherit poetry2nix; };
|
|
|
|
top-packages-2 = pkgs.callPackage ./common-pkgs-2 { inherit poetry2nix; };
|
2019-12-10 10:21:22 +01:00
|
|
|
pep425 = pkgs.callPackage ./pep425 { inherit pep425; inherit pep425OSX; inherit pep425Python37; };
|
2019-12-17 14:01:45 +01:00
|
|
|
env = pkgs.callPackage ./env { inherit poetry2nix; };
|
2019-12-11 13:20:15 +01:00
|
|
|
git-deps = pkgs.callPackage ./git-deps { inherit poetry2nix; };
|
2019-12-28 18:49:11 +00:00
|
|
|
git-deps-pinned = pkgs.callPackage ./git-deps-pinned { inherit poetry2nix; };
|
|
|
|
cli = poetry2nix;
|
2019-12-11 13:24:58 +01:00
|
|
|
path-deps = pkgs.callPackage ./path-deps { inherit poetry2nix; };
|
2019-12-16 19:01:16 +01:00
|
|
|
|
2020-01-01 18:01:04 +00:00
|
|
|
inherit (poetry2nix) doc;
|
|
|
|
|
2019-12-16 19:01:16 +01:00
|
|
|
# manylinux requires nixpkgs with https://github.com/NixOS/nixpkgs/pull/75763
|
|
|
|
# Once this is available in 19.09 and unstable we can re-enable the manylinux test
|
|
|
|
#manylinux = pkgs.callPackage ./manylinux { inherit poetry2nix; };
|
2019-12-11 13:31:22 +01:00
|
|
|
}
|