Unverified Commit 42613a29 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python310Packages.unrpa: update disabled

- add changelog to meta
parent 48c39f18
Loading
Loading
Loading
Loading
+9 −4
Original line number Diff line number Diff line
{ lib, buildPythonPackage, fetchPypi, uncompyle6, isPy27 }:
{ lib
, buildPythonPackage
, fetchPypi
, uncompyle6
, pythonOlder
}:

buildPythonPackage rec {
  pname = "unrpa";
  version = "2.3.0";

  disabled = isPy27;

  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0yl4qdwp3in170ks98qnldqz3r2iyzil5g1775ccg98qkh95s724";
@@ -24,6 +28,7 @@ buildPythonPackage rec {

  meta = with lib; {
    homepage = "https://github.com/Lattyware/unrpa";
    changelog = "https://github.com/Lattyware/unrpa/releases/tag/${version}";
    description = "A program to extract files from the RPA archive format";
    license = licenses.gpl3;
    maintainers = with maintainers; [ leo60228 ];