Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c85f0a12bb21
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 53c48c2adb26
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on May 13, 2020

  1. pythonPackages.unrpa: init at 2.3.0

    leo60228 authored and Jon committed May 13, 2020
    Copy the full SHA
    109b400 View commit details
  2. unrpa: init at 2.3.0

    leo60228 authored and Jon committed May 13, 2020
    Copy the full SHA
    53c48c2 View commit details
Showing with 28 additions and 0 deletions.
  1. +24 −0 pkgs/development/python-modules/unrpa/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
  3. +2 −0 pkgs/top-level/python-packages.nix
24 changes: 24 additions & 0 deletions pkgs/development/python-modules/unrpa/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{ lib, buildPythonPackage, fetchPypi, uncompyle6, isPy27 }:

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

disabled = isPy27;

src = fetchPypi {
inherit pname version;
sha256 = "0yl4qdwp3in170ks98qnldqz3r2iyzil5g1775ccg98qkh95s724";
};

propagatedBuildInputs = [ uncompyle6 ];

pythonImportsCheck = [ "unrpa" ];

meta = with lib; {
homepage = "https://github.com/Lattyware/unrpa";
description = "A program to extract files from the RPA archive format";
license = licenses.gpl3;
maintainers = with maintainers; [ leo60228 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -7207,6 +7207,8 @@ in

unrtf = callPackage ../tools/text/unrtf { };

unrpa = with python3Packages; toPythonApplication unrpa;

untex = callPackage ../tools/text/untex { };

untrunc = callPackage ../tools/video/untrunc { };
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -4068,6 +4068,8 @@ in {

uncompyle6 = callPackage ../development/python-modules/uncompyle6 { };

unrpa = callPackage ../development/python-modules/unrpa { };

lsi = callPackage ../development/python-modules/lsi { };

hkdf = callPackage ../development/python-modules/hkdf { };