aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorJ08nY2024-08-17 22:57:44 +0200
committerJ08nY2024-08-17 22:57:44 +0200
commit759c37c855512bc76578dce935d240cffcb6f999 (patch)
tree358a45b6899b7de6135ddae4998a97894d6cd090 /flake.nix
parent8347e1dba7804f2b0a380d18dc4e9fd850250ea7 (diff)
downloadECTester-759c37c855512bc76578dce935d240cffcb6f999.tar.gz
ECTester-759c37c855512bc76578dce935d240cffcb6f999.tar.zst
ECTester-759c37c855512bc76578dce935d240cffcb6f999.zip
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix19
1 files changed, 14 insertions, 5 deletions
diff --git a/flake.nix b/flake.nix
index 236e5eb..c32bbb4 100644
--- a/flake.nix
+++ b/flake.nix
@@ -884,11 +884,6 @@
version = "0.1.0";
format = "other";
- propagatedBuildInputs = [
- ipython
- pudb
- ];
-
src = ./nix/build_all.py;
dontUnpack = true;
installPhase = ''
@@ -896,6 +891,20 @@
'';
};
+ testAll =
+ with pkgs.python3Packages;
+ buildPythonApplication {
+ pname = "testAll";
+ version = "0.1.0";
+ format = "other";
+
+ src = ./nix/test_all.py;
+ dontUnpack = true;
+ installPhase = ''
+ install -Dm755 $src $out/bin/$pname
+ '';
+ };
+
plotVersions =
with pkgs.python3Packages;
buildPythonApplication {