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 ce53448 commit b3ad661Copy full SHA for b3ad661
1 file changed
nixos/lib/test-driver/default.nix
@@ -13,11 +13,20 @@
13
, extraPythonPackages ? (_ : [])
14
, nixosTests
15
}:
16
-
+let
17
+ fs = lib.fileset;
18
+in
19
python3Packages.buildPythonApplication {
20
pname = "nixos-test-driver";
21
version = "1.1";
- src = ./.;
22
+ src = fs.toSource {
23
+ root = ./.;
24
+ fileset = fs.unions [
25
+ ./pyproject.toml
26
+ ./test_driver
27
+ ./extract-docstrings.py
28
+ ];
29
+ };
30
pyproject = true;
31
32
propagatedBuildInputs = [
0 commit comments