mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-12-24 15:01:56 +03:00
3f6c7cbd80
- infer build-systems from pyproject.toml - add more generic getClosure lib function to get the closure of any given dependency + extra - resolve extras correctly for each computed closure - overhaul some of the existing tests
30 lines
746 B
Nix
30 lines
746 B
Nix
{
|
|
pkgs ? import <nixpkgs> {},
|
|
lib ? import <nixpkgs/lib>,
|
|
dream2nix ? import ../../../. inputs,
|
|
inputs ? (import ../../../.).inputs,
|
|
}: let
|
|
eval = module:
|
|
(lib.evalModules {
|
|
modules = [
|
|
dream2nix.modules.dream2nix.WIP-python-pdm
|
|
module
|
|
];
|
|
specialArgs = {
|
|
dream2nix = dream2nix // {inherit inputs;};
|
|
packageSets.nixpkgs = pkgs;
|
|
};
|
|
})
|
|
.config;
|
|
in {
|
|
test_pdm = let
|
|
config = eval {
|
|
pdm.lockfile = ./../test_python-pdm-lib/fixtures/pdm-example1.lock;
|
|
pdm.pyproject = ./../test_python-pdm-lib/fixtures/pyproject.toml;
|
|
};
|
|
in {
|
|
expr = (lib.head (lib.attrValues config.groups.default.packages.certifi)).public ? drvPath;
|
|
expected = true;
|
|
};
|
|
}
|