depot/third_party/nixpkgs/pkgs/development/python-modules/unrardll/default.nix
Default email ce641f4048 Project import generated by Copybara.
GitOrigin-RevId: bc5d68306b40b8522ffb69ba6cff91898c2fbbff
2021-12-06 17:07:01 +01:00

22 lines
563 B
Nix

{ 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 ];
};
}