pythonPackages.unrardll: init at 0.1.4

This commit is contained in:
nyanloutre 2020-09-21 20:19:43 +02:00
parent 7abb57c7b5
commit 2bdfb86e08
No known key found for this signature in database
GPG key ID: 194A92D1103ACB2A
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ lib, buildPythonPackage, fetchPypi, unrar }:
buildPythonPackage rec {
pname = "unrardll";
version = "0.1.4";
src = fetchPypi {
inherit pname version;
sha256 = "4149c0729cf96a0bae80360e7d94dc40af1088c8da7f6eb8d10e09b8632e92ad";
};
buildInputs = [ unrar ];
pythonImportsCheck = [ "unrardll" ];
meta = with lib; {
description = "Wrap the Unrar DLL to enable unraring of files in python";
homepage = "https://github.com/kovidgoyal/unrardll";
license = licenses.bsd3;
maintainers = with maintainers; [ nyanloutre ];
};
}

View file

@ -7258,6 +7258,8 @@ in {
unpaddedbase64 = callPackage ../development/python-modules/unpaddedbase64 { };
unrardll = callPackage ../development/python-modules/unrardll { };
unrpa = callPackage ../development/python-modules/unrpa { };
untangle = callPackage ../development/python-modules/untangle { };