generated from Luis/nextjs-python-web-template
clan-cli: remove unnecessary unit test file clan-cli: fix shell.nix too stateful clan-cli: remove conftest.py clan-cli: fix flake-module.nix
11 lines
287 B
Nix
11 lines
287 B
Nix
{
|
|
perSystem = {pkgs, ...}: let
|
|
pyproject = builtins.fromTOML (builtins.readFile ./pyproject.toml);
|
|
name = pyproject.project.name;
|
|
package = pkgs.callPackage ./default.nix {};
|
|
in {
|
|
# packages.${name} = package;
|
|
checks.python-template = package.tests.check;
|
|
};
|
|
}
|