mirror of
https://github.com/loganintech/plex-simul-finder.git
synced 2026-05-30 14:21:14 +00:00
20 lines
486 B
Nix
20 lines
486 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs = { nixpkgs, flake-utils, ... }:
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
let
|
|
pkgs = import nixpkgs { inherit system; };
|
|
python = pkgs.python3.withPackages (ps: with ps; [
|
|
requests
|
|
]);
|
|
in {
|
|
devShells.default = pkgs.mkShell {
|
|
buildInputs = [ python ];
|
|
};
|
|
});
|
|
}
|