Skip to content

Commit

Permalink
chore: update locks
Browse files Browse the repository at this point in the history
  • Loading branch information
GTrunSec committed Jan 30, 2024
1 parent d9b8992 commit 9c2e6fe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 3 additions & 6 deletions nix/my-project.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,17 @@ in
imports = [ dream2nix.modules.dream2nix.WIP-python-pdm ];
pdm.lockfile = src + /pdm.lock;
pdm.pyproject = src + /pyproject.toml;
pdm.pythonInterpreter = config.deps.python3;
mkDerivation = {
inherit src;
buildInputs = [ config.deps.python3.pkgs.pdm-backend ];
buildInputs = [ config.deps.python.pkgs.pdm-backend ];
};
deps =
{ nixpkgs, ... }:
{
python = nixpkgs.python310;
mkShell =
let
pythonEnv =
(config.deps.python.withPackages (
ps: config.mkDerivation.propagatedBuildInputs
));
pythonEnv = (config.deps.python.withPackages (ps: config.mkDerivation.propagatedBuildInputs));
in
nixpkgs.mkShell {
buildInputs = [
Expand Down

0 comments on commit 9c2e6fe

Please sign in to comment.