forked from MultiQC/MultiQC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
37 lines (34 loc) · 1.47 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
inputs = {
mach-nix.url = "github:DavHau/mach-nix";
pypi.url = "github:DavHau/pypi-deps-db";
pypi.flake = false;
mach-nix.inputs.pypi-deps-db.follows = "pypi";
};
outputs = {self, nixpkgs, ...}@inputs:
let
target-system = "x86_64-linux";
pkgs = import nixpkgs {system = target-system;};
# this will find all dependencies in setup.py
mkPackage = system: inputs.mach-nix.lib."${system}".buildPythonPackage {src=./.;
python = "python38";
requirementsExtra = "setuptools";
};
mkPython = system: inputs.mach-nix.lib."${system}".mkPython {
python = "python38";
# extra packages needed for development
requirements = ''python-lsp-server
rich-click
black'';
# hack because black requires tomli (currently broken in mach-nix, issue #484)
_.black.propagatedBuildInputs.mod = pySelf: self: oldVal: oldVal ++ [ pySelf.tomli ];
packagesExtra = [ (mkPackage system) ];
};
in
{
packages.${target-system}.default = mkPackage target-system;
devShells.${target-system}.default = pkgs.mkShell{
buildInputs=[(mkPython target-system) pkgs.nodePackages.prettier pkgs.nodePackages.markdownlint-cli];
};
};
}