We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b87275 commit b48a7a2Copy full SHA for b48a7a2
overlay.nix
@@ -11,7 +11,7 @@ final: prev:
11
unblob =
12
let
13
pyproject_toml = (builtins.fromTOML (builtins.readFile ./pyproject.toml));
14
- version = pyproject_toml.tool.poetry.version;
+ version = pyproject_toml.project.version;
15
in
16
(prev.unblob.override { e2fsprogs = final.e2fsprogs-nofortify; }).overridePythonAttrs (super: {
17
inherit version;
@@ -22,9 +22,13 @@ final: prev:
22
"pyproject.toml"
23
"unblob"
24
"tests"
25
+ "README.md"
26
];
27
};
28
29
+ # remove this when packaging changes are upstreamed
30
+ build-system = with final.python3.pkgs; [ hatchling ];
31
+
32
# override disabling of 'test_all_handlers[filesystem.extfs]' from upstream
33
pytestFlagsArray = [
34
"--no-cov"
0 commit comments