tumpa: init at 0.1.1

This commit is contained in:
0x4A6F 2021-01-05 19:07:41 +00:00
parent e149a5c90c
commit d80b8a4504
No known key found for this signature in database
GPG Key ID: 8DEDBA5BE07080E1
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{ stdenv
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pyside2
, johnnycanencrypt
, pythonOlder
}:
buildPythonPackage rec {
pname = "tumpa";
version = "0.1.1";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "kushaldas";
repo = "tumpa";
rev = "v${version}";
sha256 = "1wvs64s0jxn4p8zr643d2hcczw3a175r6ib3481gdhjx38kgxjbq";
};
propagatedBuildInputs = [
setuptools
johnnycanencrypt
pyside2
];
doCheck = false;
meta = with stdenv.lib; {
description = "OpenPGP key creation and smartcard access";
homepage = "https://github.com/kushaldas/tumpa";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ _0x4A6F ];
};
}

View File

@ -7560,6 +7560,8 @@ in {
tubeup = callPackage ../development/python-modules/tubeup { }; tubeup = callPackage ../development/python-modules/tubeup { };
tumpa = callPackage ../development/python-modules/tumpa { };
tvdb_api = callPackage ../development/python-modules/tvdb_api { }; tvdb_api = callPackage ../development/python-modules/tvdb_api { };
tvnamer = callPackage ../development/python-modules/tvnamer { }; tvnamer = callPackage ../development/python-modules/tvnamer { };