Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
55 lines
1.1 KiB
Nix
55 lines
1.1 KiB
Nix
{ nix
|
|
, makeWrapper
|
|
, python3Packages
|
|
, lib
|
|
, nix-prefetch-scripts
|
|
, luarocks-nix
|
|
, pluginupdate
|
|
}:
|
|
let
|
|
|
|
path = lib.makeBinPath [
|
|
nix nix-prefetch-scripts luarocks-nix
|
|
];
|
|
|
|
attrs = builtins.fromTOML (builtins.readFile ./pyproject.toml);
|
|
pname = attrs.project.name;
|
|
inherit (attrs.project) version;
|
|
in
|
|
|
|
python3Packages.buildPythonApplication {
|
|
inherit pname version;
|
|
pyproject = true;
|
|
|
|
src = lib.cleanSource ./.;
|
|
|
|
build-system = [
|
|
python3Packages.setuptools
|
|
];
|
|
|
|
dependencies = [
|
|
python3Packages.gitpython
|
|
];
|
|
|
|
postFixup = ''
|
|
echo "pluginupdate folder ${pluginupdate}"
|
|
wrapProgram $out/bin/luarocks-packages-updater \
|
|
--prefix PYTHONPATH : "${pluginupdate}" \
|
|
--prefix PATH : "${path}"
|
|
'';
|
|
|
|
shellHook = ''
|
|
export PYTHONPATH="maintainers/scripts/pluginupdate-py:$PYTHONPATH"
|
|
export PATH="${path}:$PATH"
|
|
'';
|
|
|
|
meta = {
|
|
inherit (attrs.project) description;
|
|
license = lib.licenses.gpl3Only;
|
|
homepage = attrs.project.urls.Homepage;
|
|
mainProgram = "luarocks-packages-updater";
|
|
maintainers = with lib.maintainers; [ teto ];
|
|
};
|
|
}
|
|
|
|
|