python310Packages.unrpa: update disabled

- add changelog to meta
This commit is contained in:
Fabian Affolter 2023-03-05 21:42:43 +01:00 committed by GitHub
parent 48c39f18fc
commit 42613a29e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,13 +1,17 @@
{ 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 ];