Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
hoh committed Oct 23, 2023
1 parent 63d72fa commit 3b2f464
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
6 changes: 3 additions & 3 deletions packaging/nixos/config.nix
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@
};

environment.systemPackages = with pkgs; [
#( callPackage ./default.nix {} )

( callPackage ./default.nix {} )

helix

git
Expand Down
9 changes: 6 additions & 3 deletions packaging/nixos/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
{
python3
{
python3,
pkgs
}:

python3.pkgs.buildPythonPackage rec {
pname = "vm_supervisor";
version = "1.8.3";
src = ../../vm_supervisor;
src = ../..;
format = "pyproject";
#src = fetchPypi {
# inherit pname version;
# sha256 = "sha256-0aozmQ4Eb5zL4rtNHSFjEynfObUkYlid1PgMDVmRkwY=";
Expand All @@ -14,5 +16,6 @@
propagatedBuildInputs = [
# Specify dependencies
#pkgs.python3Packages.numpy
pkgs.python3Packages.setuptools
];
}

0 comments on commit 3b2f464

Please sign in to comment.