nixpkgs/pkgs/games/portmod/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

104 lines
2.4 KiB
Nix
Raw Normal View History

{ lib, callPackage, python3Packages, fetchFromGitLab, cacert
, rustPlatform, bubblewrap, git, perlPackages, imagemagick, fetchurl, fetchzip
, jre, makeWrapper, tr-patcher, tes3cmd, openmw }:
2020-10-17 08:50:51 +00:00
let
version = "2.1.0";
2020-10-17 08:50:51 +00:00
src = fetchFromGitLab {
owner = "portmod";
repo = "Portmod";
rev = "v${version}";
sha256 = "sha256-b/ENApFovMPNUMbJhwY+TZCnSzpr1e/IKJ/5XAGTQjE=";
2020-10-17 08:50:51 +00:00
};
portmod-rust = rustPlatform.buildRustPackage rec {
inherit src version;
pname = "portmod-rust";
cargoHash = "sha256-3EfMMpSWSYsB3nXaoGGDuKQ9duyCKzbrT6oeATnzqLE=";
2020-10-17 08:50:51 +00:00
nativeBuildInputs = [ python3Packages.python ];
doCheck = false;
};
bin-programs = [
bubblewrap
git
python3Packages.virtualenv
tr-patcher
tes3cmd
imagemagick
openmw
2020-10-17 08:50:51 +00:00
];
in
python3Packages.buildPythonApplication rec {
inherit src version;
pname = "portmod";
SETUPTOOLS_SCM_PRETEND_VERSION = version;
# build the rust library independantly
prePatch = ''
substituteInPlace setup.py \
--replace "from setuptools_rust import Binding, RustExtension" "" \
2021-08-10 09:55:15 +00:00
--replace "RustExtension(\"portmodlib.portmod\", binding=Binding.PyO3, strip=True)" ""
2020-10-17 08:50:51 +00:00
'';
propagatedBuildInputs = with python3Packages; [
setuptools-scm
2020-10-17 08:50:51 +00:00
setuptools
requests
chardet
colorama
restrictedpython
appdirs
GitPython
progressbar2
python-sat
redbaron
patool
packaging
2021-08-10 09:55:15 +00:00
fasteners
2020-10-17 08:50:51 +00:00
];
checkInputs = with python3Packages; [
pytestCheckHook
] ++ bin-programs;
preCheck = ''
2021-08-10 09:55:15 +00:00
cp ${portmod-rust}/lib/libportmod.so portmodlib/portmod.so
2020-10-17 08:50:51 +00:00
export HOME=$(mktemp -d)
'';
# some test require network access
disabledTests = [
"test_masters_esp"
"test_logging"
"test_execute_network_permissions"
"test_execute_permissions_bleed"
"test_git"
2021-08-10 09:55:15 +00:00
"test_sync"
"test_manifest"
"test_add_repo"
2020-10-17 08:50:51 +00:00
];
# for some reason, installPhase doesn't copy the compiled binary
postInstall = ''
2021-08-10 09:55:15 +00:00
cp ${portmod-rust}/lib/libportmod.so $out/${python3Packages.python.sitePackages}/portmodlib/portmod.so
2020-10-17 08:50:51 +00:00
makeWrapperArgs+=("--prefix" "GIT_SSL_CAINFO" ":" "${cacert}/etc/ssl/certs/ca-bundle.crt" \
"--prefix" "PATH" ":" "${lib.makeBinPath bin-programs }")
'';
meta = {
description = "mod manager for openMW based on portage";
homepage = "https://gitlab.com/portmod/portmod";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ marius851000 ];
};
}