portmod: rename Gitpython

This commit is contained in:
Fabian Affolter 2022-12-05 22:04:59 +01:00
parent 60a6c602f7
commit 3d2cdabd1a

View file

@ -1,6 +1,21 @@
{ lib, callPackage, python3Packages, fetchFromGitLab, cacert
, rustPlatform, bubblewrap, git, perlPackages, imagemagick, fetchurl, fetchzip
, jre, makeWrapper, tr-patcher, tes3cmd, openmw }:
{ lib
, bubblewrap
, cacert
, callPackage
, fetchFromGitLab
, fetchurl
, fetchzip
, git
, imagemagick
, jre
, makeWrapper
, openmw
, perlPackages
, python3Packages
, rustPlatform
, tes3cmd
, tr-patcher
}:
let
version = "2.1.0";
@ -9,7 +24,7 @@ let
owner = "portmod";
repo = "Portmod";
rev = "v${version}";
sha256 = "sha256-b/ENApFovMPNUMbJhwY+TZCnSzpr1e/IKJ/5XAGTQjE=";
hash = "sha256-b/ENApFovMPNUMbJhwY+TZCnSzpr1e/IKJ/5XAGTQjE=";
};
portmod-rust = rustPlatform.buildRustPackage rec {
@ -18,7 +33,9 @@ let
cargoHash = "sha256-3EfMMpSWSYsB3nXaoGGDuKQ9duyCKzbrT6oeATnzqLE=";
nativeBuildInputs = [ python3Packages.python ];
nativeBuildInputs = [
python3Packages.python
];
doCheck = false;
};
@ -56,7 +73,7 @@ python3Packages.buildPythonApplication rec {
colorama
restrictedpython
appdirs
GitPython
gitpython
progressbar2
python-sat
redbaron
@ -94,10 +111,10 @@ python3Packages.buildPythonApplication rec {
"--prefix" "PATH" ":" "${lib.makeBinPath bin-programs }")
'';
meta = {
meta = with lib; {
description = "mod manager for openMW based on portage";
homepage = "https://gitlab.com/portmod/portmod";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ marius851000 ];
license = licenses.gpl3Only;
maintainers = with maintainers; [ marius851000 ];
};
}