at 22.05-pre 587 B view raw
1{ lib, buildPythonPackage, fetchPypi, uncompyle6, isPy27 }: 2 3buildPythonPackage rec { 4 pname = "unrpa"; 5 version = "2.3.0"; 6 7 disabled = isPy27; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "0yl4qdwp3in170ks98qnldqz3r2iyzil5g1775ccg98qkh95s724"; 12 }; 13 14 propagatedBuildInputs = [ uncompyle6 ]; 15 16 pythonImportsCheck = [ "unrpa" ]; 17 18 meta = with lib; { 19 homepage = "https://github.com/Lattyware/unrpa"; 20 description = "A program to extract files from the RPA archive format"; 21 license = licenses.gpl3; 22 maintainers = with maintainers; [ leo60228 ]; 23 }; 24}