packages: dependencySets -> packageSets
This commit is contained in:
parent
d490e2ddf3
commit
5cbb563fd3
3 changed files with 4 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
|||
{ config, dependencySets, drv-parts, lib, ... }:
|
||||
{ config, packageSets, drv-parts, lib, ... }:
|
||||
|
||||
let
|
||||
inherit (config) deps;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ pkgs, inputs', self', ... }:
|
||||
|
||||
{
|
||||
drv-parts.dependencySets = {
|
||||
drv-parts.packageSets = {
|
||||
inherit pkgs inputs' self';
|
||||
inherit (pkgs) python3Packages;
|
||||
};
|
||||
|
|
|
@ -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
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue