summary refs log tree commit diff
path: root/pkgs/development/python-modules/unrardll/default.nix
blob: 4feb29a09016138cfaed43b7f4e36405f46a9345 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ 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 ];
  };
}