90 lines
2.8 KiB
Nix
90 lines
2.8 KiB
Nix
|
{
|
||
|
description = ''
|
||
|
An opinionated poetry flake.
|
||
|
|
||
|
This flake has been adapted from the `app` template found in:
|
||
|
https://github.com/nix-community/poetry2nix
|
||
|
|
||
|
To generate a copy of this template elsewhere, run:
|
||
|
$> bootstrap poetry
|
||
|
'';
|
||
|
|
||
|
inputs = {
|
||
|
flake-compat.url = "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz";
|
||
|
flake-utils.url = "github:numtide/flake-utils";
|
||
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||
|
poetry2nix = {
|
||
|
url = "github:nix-community/poetry2nix";
|
||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
outputs = { self, nixpkgs, flake-utils, poetry2nix, ... }:
|
||
|
flake-utils.lib.eachDefaultSystem (system:
|
||
|
let
|
||
|
# See https://github.com/nix-community/poetry2nix/tree/master#api for
|
||
|
# more functions and examples.
|
||
|
pkgs = nixpkgs.legacyPackages.${system};
|
||
|
|
||
|
inherit
|
||
|
(poetry2nix.lib.mkPoetry2Nix { inherit pkgs; })
|
||
|
mkPoetryApplication
|
||
|
defaultPoetryOverrides;
|
||
|
|
||
|
# https://github.com/nix-community/poetry2nix/blob/ec4364021900f8e0d425d901b6e6ff03cf201efb/docs/edgecases.md
|
||
|
# `poetry2nix`, by default, prefers building from source. To build
|
||
|
# certain dependencies, we need to augment its build dependencies by
|
||
|
# adding the corresponding build backend (e.g. `setuptools`).
|
||
|
#
|
||
|
# For example, you can write:
|
||
|
# ```nix
|
||
|
# pypkgs-build-requirements = {
|
||
|
# ...
|
||
|
# coolname = [ "setuptools" ];
|
||
|
# ...
|
||
|
# };
|
||
|
# ```
|
||
|
# after encountering a build error like:
|
||
|
#
|
||
|
# > ModuleNotFoundError: No module named 'setuptools'
|
||
|
pypkgs-build-requirements = {};
|
||
|
poetry2nix-overrides = defaultPoetryOverrides.extend (self: super:
|
||
|
builtins.mapAttrs (package: build-requirements:
|
||
|
(builtins.getAttr package super).overridePythonAttrs (old: {
|
||
|
buildInputs =
|
||
|
(old.buildInputs or []) ++
|
||
|
(builtins.map (pkg:
|
||
|
if builtins.isString pkg then
|
||
|
builtins.getAttr pkg super
|
||
|
else
|
||
|
pkg) build-requirements);
|
||
|
})
|
||
|
) pypkgs-build-requirements
|
||
|
);
|
||
|
in
|
||
|
{
|
||
|
packages = {
|
||
|
tmpl-app = mkPoetryApplication {
|
||
|
projectDir = ./.;
|
||
|
overrides = poetry2nix-overrides;
|
||
|
};
|
||
|
default = self.packages.${system}.tmpl-app;
|
||
|
};
|
||
|
|
||
|
devShells.default = pkgs.mkShell {
|
||
|
inputsFrom = [ self.packages.${system}.tmpl-app ];
|
||
|
packages = [
|
||
|
pkgs.poetry
|
||
|
] ++ (with pkgs.python311Packages; [
|
||
|
black
|
||
|
debugpy
|
||
|
mccabe
|
||
|
pycodestyle
|
||
|
pyflakes
|
||
|
python-lsp-black
|
||
|
python-lsp-server
|
||
|
]);
|
||
|
};
|
||
|
});
|
||
|
}
|