packages: dependencySets -> packageSets

This commit is contained in:
Max Headroom 2023-03-31 14:38:31 +02:00
parent d490e2ddf3
commit 5cbb563fd3
3 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
{ config, dependencySets, drv-parts, lib, ... }:
{ config, packageSets, drv-parts, lib, ... }:
let
inherit (config) deps;

View file

@ -1,7 +1,7 @@
{ pkgs, inputs', self', ... }:
{
drv-parts.dependencySets = {
drv-parts.packageSets = {
inherit pkgs inputs' self';
inherit (pkgs) python3Packages;
};

View file

@ -2,7 +2,7 @@
{
perSystem = { config, drv-backends, lib, pkgs, ... }: let
deps = with config.drv-parts.dependencySets.python3Packages; [
deps = with config.drv-parts.packageSets.python3Packages; [
poetry-core
requests-unixsocket
py-multibase
@ -19,7 +19,7 @@
env.PYTHON = pythonForDev.interpreter;
commands.reflex.command = "${pythonForDev.interpreter} -m reflex_cache.main";
};
drvs.reflex-cache = { dependencySets, ... }: {
drvs.reflex-cache = { packageSets, ... }: {
imports = [
drv-backends.buildPythonPackage
];