depot/third_party/nixpkgs/pkgs/development/python-modules/pyinstaller-hooks-contrib/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

45 lines
1.5 KiB
Nix

{
lib
, buildPythonPackage
, fetchPypi
, setuptools
}:
buildPythonPackage rec {
pname = "pyinstaller-hooks-contrib";
version = "2024.7";
pyproject = true;
src = fetchPypi {
pname = "pyinstaller_hooks_contrib";
inherit version;
hash = "sha256-/V833Pmb7OGE5AZCr4i+Fqm4lhPsuViovRE2Y0/J+sU=";
};
build-system = [ setuptools ];
# There are tests for every hook, which means that
# new updates are going to require changes to test inputs
# and building tests creates a very big closure.
doCheck = false;
meta = {
description = "Community maintained hooks for PyInstaller";
longDescription = ''
A "hook" file extends PyInstaller to adapt it to the special needs and methods used by a Python package.
The word "hook" is used for two kinds of files. A runtime hook helps the bootloader to launch an app,
setting up the environment. A package hook (there are several types of those) tells PyInstaller
what to include in the final app - such as the data files and (hidden) imports mentioned above.
This repository is a collection of hooks for many packages, and allows PyInstaller to work with these packages seamlessly.
'';
homepage = "https://github.com/pyinstaller/pyinstaller-hooks-contrib";
# See https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/761
changelog = "https://github.com/pyinstaller/pyinstaller-hooks-contrib/blob/master/CHANGELOG.rst";
license = with lib.licenses; [
gpl2Plus
asl20
];
maintainers = with lib.maintainers; [ h7x4 ];
};
}