mirror of
https://github.com/Mic92/nix-update.git
synced 2024-11-03 21:04:49 +03:00
114b107fcf
``` ## run black All done! ✨ 🍰 ✨ 28 files would be left unchanged. ## run ruff error `bin/nix-update` is not supported; Ruff only supports `.py` and `.pyi` files ```
39 lines
978 B
Nix
39 lines
978 B
Nix
{ pkgs ? import <nixpkgs> { }
|
|
, src ? ./.
|
|
}:
|
|
|
|
|
|
with pkgs;
|
|
python3.pkgs.buildPythonApplication rec {
|
|
name = "nix-update";
|
|
inherit src;
|
|
buildInputs = [ makeWrapper ];
|
|
checkInputs = [
|
|
python3.pkgs.pytest
|
|
python3.pkgs.black
|
|
ruff
|
|
glibcLocales
|
|
mypy
|
|
# technically not a test input, but we need it for development in PATH
|
|
pkgs.nixVersions.stable or nix_2_4
|
|
];
|
|
checkPhase = ''
|
|
echo -e "\x1b[32m## run black\x1b[0m"
|
|
LC_ALL=en_US.utf-8 black --check . bin/nix-update
|
|
echo -e "\x1b[32m## run ruff\x1b[0m"
|
|
ruff .
|
|
echo -e "\x1b[32m## run mypy\x1b[0m"
|
|
mypy --no-warn-unused-ignores --strict nix_update tests
|
|
'';
|
|
makeWrapperArgs = [
|
|
"--prefix PATH"
|
|
":"
|
|
(lib.makeBinPath [ pkgs.nixVersions.stable or nix_2_4 nixpkgs-fmt nixpkgs-review ])
|
|
];
|
|
shellHook = ''
|
|
# workaround because `python setup.py develop` breaks for me
|
|
'';
|
|
|
|
passthru.env = buildEnv { inherit name; paths = buildInputs ++ checkInputs; };
|
|
}
|