Skip to content

Commit b48a7a2

Browse files
committed
chore(nix): poetry -> uv
1 parent 6b87275 commit b48a7a2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

overlay.nix

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ final: prev:
1111
unblob =
1212
let
1313
pyproject_toml = (builtins.fromTOML (builtins.readFile ./pyproject.toml));
14-
version = pyproject_toml.tool.poetry.version;
14+
version = pyproject_toml.project.version;
1515
in
1616
(prev.unblob.override { e2fsprogs = final.e2fsprogs-nofortify; }).overridePythonAttrs (super: {
1717
inherit version;
@@ -22,9 +22,13 @@ final: prev:
2222
"pyproject.toml"
2323
"unblob"
2424
"tests"
25+
"README.md"
2526
];
2627
};
2728

29+
# remove this when packaging changes are upstreamed
30+
build-system = with final.python3.pkgs; [ hatchling ];
31+
2832
# override disabling of 'test_all_handlers[filesystem.extfs]' from upstream
2933
pytestFlagsArray = [
3034
"--no-cov"

0 commit comments

Comments
 (0)