mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-04 16:51:40 -05:00
add missing pkgs
prefix to examples
This commit is contained in:
parent
f70ffaa7ef
commit
2caeb26814
1 changed files with 2 additions and 2 deletions
|
@ -97,7 +97,7 @@ The `env` attribute of the attribute set created by `mkPoetryEnv` contains a she
|
|||
```nix
|
||||
{ pkgs ? import <nixpkgs> {} }:
|
||||
let
|
||||
myAppEnv = poetry2nix.mkPoetryEnv {
|
||||
myAppEnv = pkgs.poetry2nix.mkPoetryEnv {
|
||||
projectDir = ./.;
|
||||
editablePackageSources = {
|
||||
my-app = ./src;
|
||||
|
@ -111,7 +111,7 @@ For a shell environment including external dependencies, pass the app environmen
|
|||
```nix
|
||||
{ pkgs ? import <nixpkgs> {} }:
|
||||
let
|
||||
myAppEnv = poetry2nix.mkPoetryEnv {
|
||||
myAppEnv = pkgs.poetry2nix.mkPoetryEnv {
|
||||
projectDir = ./.;
|
||||
editablePackageSources = {
|
||||
my-app = ./src;
|
||||
|
|
Loading…
Add table
Reference in a new issue