My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/unrardll/default.nix

22 lines
563 B

{ lib, buildPythonPackage, fetchPypi, unrar }:
buildPythonPackage rec {
pname = "unrardll";
version = "0.1.5";
src = fetchPypi {
inherit pname version;
sha256 = "8bebb480b96cd49d4290d814914f39cff75cf0fa0514c4790bb32b1757227c78";
};
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 ];
};
}