diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 4cced06..a6e140a 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -23,3 +23,6 @@ jobs: - name: Lint if: success() || failure() run: nix develop --command make lintcheck + - name: Build + if: success() || failure() + run: nix build .#rose diff --git a/flake.nix b/flake.nix index 1ee4277..50080e6 100644 --- a/flake.nix +++ b/flake.nix @@ -30,8 +30,10 @@ click fuse mutagen + setuptools tomli-w uuid6-python + pip ]; dev-deps = with python.pkgs; [ black @@ -39,7 +41,6 @@ mypy pytest pytest-cov - setuptools ]; dev-cli = pkgs.writeShellScriptBin "rose" '' cd $ROSE_ROOT @@ -81,6 +82,7 @@ version = "0.0.0"; src = ./.; propagatedBuildInputs = prod-deps; + doCheck = false; }; default = rose; }; diff --git a/setup.py b/setup.py index c5638df..5969404 100644 --- a/setup.py +++ b/setup.py @@ -14,6 +14,6 @@ "fuse-python", "mutagen", "tomli-w", - "uuid6-python", + "uuid6", ], )