linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / unrardll / default.nix
blob49e070b8463194eb8b662cddb6d72f19f5081a8c
1 { lib, buildPythonPackage, fetchPypi, unrar }:
3 buildPythonPackage rec {
4   pname = "unrardll";
5   version = "0.1.4";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "4149c0729cf96a0bae80360e7d94dc40af1088c8da7f6eb8d10e09b8632e92ad";
10   };
12   buildInputs = [ unrar ];
14   pythonImportsCheck = [ "unrardll" ];
16   meta = with lib; {
17     description = "Wrap the Unrar DLL to enable unraring of files in python";
18     homepage = "https://github.com/kovidgoyal/unrardll";
19     license = licenses.bsd3;
20     maintainers = with maintainers; [ nyanloutre ];
21   };