29 lines
936 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-01-13 22:07:27 -05:00
outputs = { nixpkgs, mach-nix, ... }:
2022-06-27 16:41:29 -04:00
let
supportedSystems = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ];
forAllSystems = f:
nixpkgs.lib.genAttrs supportedSystems
(system: f system (import nixpkgs { inherit system; }));
in rec {
2023-02-20 20:45:56 -05:00
defaultApp = forAllSystems (system: _pkgs:
mach-nix.lib."${system}".mkPython {
2022-06-27 16:41:29 -04:00
requirements = builtins.readFile ./requirements.txt;
});
devShell = forAllSystems (system: pkgs:
pkgs.mkShell { buildInputs = [ defaultApp."${system}" ]; });
2022-06-27 16:41:29 -04:00
};
}