Skip to content

Commit

Permalink
fix package build
Browse files Browse the repository at this point in the history
  • Loading branch information
azuline committed Oct 11, 2023
1 parent 172798f commit d81f581
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 3 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,17 @@
click
fuse
mutagen
setuptools
tomli-w
uuid6-python
pip
];
dev-deps = with python.pkgs; [
black
flake8
mypy
pytest
pytest-cov
setuptools
];
dev-cli = pkgs.writeShellScriptBin "rose" ''
cd $ROSE_ROOT
Expand Down Expand Up @@ -81,6 +82,7 @@
version = "0.0.0";
src = ./.;
propagatedBuildInputs = prod-deps;
doCheck = false;
};
default = rose;
};
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
"fuse-python",
"mutagen",
"tomli-w",
"uuid6-python",
"uuid6",
],
)

0 comments on commit d81f581

Please sign in to comment.