mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +00:00
405187ba41
It is incompatible with johnnycanencrypt 0.11.
43 lines
819 B
Nix
43 lines
819 B
Nix
{ lib
|
|
, python3
|
|
, fetchFromGitHub
|
|
, wrapQtAppsHook
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "tumpa";
|
|
version = "0.1.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kushaldas";
|
|
repo = "tumpa";
|
|
rev = "v${version}";
|
|
sha256 = "17nhdildapgic5l05f3q1wf5jvz3qqdjv543c8gij1x9rdm8hgxi";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
setuptools
|
|
johnnycanencrypt
|
|
pyside2
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
dontWrapQtApps = true;
|
|
preFixup = ''
|
|
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
|
|
'';
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "OpenPGP key creation and smartcard access";
|
|
homepage = "https://github.com/kushaldas/tumpa";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ _0x4A6F ];
|
|
broken = true;
|
|
};
|
|
}
|