dotfiles/templates/python/flake.nix

33 lines
956 B
Nix
Raw Normal View History

{
description = "Python pip flake";
inputs.pypi-deps-db = {
url = "github:DavHau/pypi-deps-db/b8c61fb930c9a9f95057b717bc7c701196f2ee4e";
flake = false;
};
inputs.mach-nix = {
# url = "github:DavHau/mach-nix/3.5.0";
url = "github:DavHau/mach-nix/8d903072c7b5426d90bc42a008242c76590af916";
inputs.pypi-deps-db.follows = "pypi-deps-db";
};
2024-04-20 13:42:06 +00:00
outputs =
{ nixpkgs, mach-nix, ... }:
2022-06-27 20:41:29 +00:00
let
2024-04-20 13:42:06 +00:00
supportedSystems = [
"x86_64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
forAllSystems =
f: nixpkgs.lib.genAttrs supportedSystems (system: f system (import nixpkgs { inherit system; }));
in
rec {
defaultApp = forAllSystems (
system: _pkgs:
mach-nix.lib."${system}".mkPython { requirements = builtins.readFile ./requirements.txt; }
);
devShell = forAllSystems (system: pkgs: pkgs.mkShell { buildInputs = [ defaultApp."${system}" ]; });
2022-06-27 20:41:29 +00:00
};
}