diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-03-31 23:40:32 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-04-01 00:00:04 +0200 |
commit | 6df2ef639806567bf7ef9b3b50bef08b9cfb7e3a (patch) | |
tree | 60b33e862c20f8aff56949d40b197aec71eedb91 /python/flake.nix | |
parent | feat(shell): Update to my new SOTA (diff) | |
download | flake-templates-6df2ef639806567bf7ef9b3b50bef08b9cfb7e3a.tar.gz flake-templates-6df2ef639806567bf7ef9b3b50bef08b9cfb7e3a.zip |
refactor({python,markdown}): Also move them to the templates diretory
Diffstat (limited to 'python/flake.nix')
-rw-r--r-- | python/flake.nix | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/python/flake.nix b/python/flake.nix deleted file mode 100644 index 36c7478..0000000 --- a/python/flake.nix +++ /dev/null @@ -1,67 +0,0 @@ -{ - description = ""; # TODO: fill this out - - inputs = { - nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; - flake-utils.url = "github:numtide/flake-utils"; - - mach-nix.url = "github:davhau/mach-nix"; - }; - - outputs = { - self, - nixpkgs, - mach-nix, - flake-utils, - ... - }: let - pythonVersion = "python39"; # TODO: update if necessary - in - flake-utils.lib.eachDefaultSystem ( - system: let - pkgs = nixpkgs.legacyPackages.${system}; - mach = mach-nix.lib.${system}; - - pythonApp = mach.buildPythonApplication ./.; - pythonAppEnv = mach.mkPython { - python = pythonVersion; - requirements = builtins.readFile ./requirements.txt; - }; - pythonAppImage = pkgs.dockerTools.buildLayeredImage { - name = pythonApp.pname; - contents = [pythonApp]; - config.Cmd = ["${pythonApp}/bin/main"]; - }; - in { - packages = { - image = pythonAppImage; - pythonPkg = pythonApp; - - default = self.packages.pythonPkg; - }; - - apps.default = { - type = "app"; - program = "${self.packages.pythonPkg}/bin/main"; - }; - - devShells.default = pkgs.mkShell { - packages = with pkgs; [ - pythonAppEnv - black - ruff - python310Packages.python-lsp-server - gnat - ]; - - env = { - LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [ - pkgs.stdenv.cc.cc - ]; - - PYTHONPATH = "${pythonAppEnv}/bin/python"; - }; - }; - } - ); -} |