diff options
| author | J08nY | 2024-08-17 22:57:44 +0200 |
|---|---|---|
| committer | J08nY | 2024-08-17 22:57:44 +0200 |
| commit | 759c37c855512bc76578dce935d240cffcb6f999 (patch) | |
| tree | 358a45b6899b7de6135ddae4998a97894d6cd090 /flake.nix | |
| parent | 8347e1dba7804f2b0a380d18dc4e9fd850250ea7 (diff) | |
| download | ECTester-759c37c855512bc76578dce935d240cffcb6f999.tar.gz ECTester-759c37c855512bc76578dce935d240cffcb6f999.tar.zst ECTester-759c37c855512bc76578dce935d240cffcb6f999.zip | |
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 19 |
1 files changed, 14 insertions, 5 deletions
@@ -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 { |
