Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / unrpa / default.nix
blobf02056506b11b97979b1a8ddb3f61be00cec6c78
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , uncompyle6
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "unrpa";
10   version = "2.3.0";
11   format = "setuptools";
13   disabled = pythonOlder "3.7";
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "0yl4qdwp3in170ks98qnldqz3r2iyzil5g1775ccg98qkh95s724";
18   };
20   passthru.optional-dependencies = {
21     ZiX = [ uncompyle6 ];
22   };
24   pythonImportsCheck = [ "unrpa" ];
26   # upstream has no unit tests
27   doCheck = false;
29   meta = with lib; {
30     homepage = "https://github.com/Lattyware/unrpa";
31     changelog = "https://github.com/Lattyware/unrpa/releases/tag/${version}";
32     description = "A program to extract files from the RPA archive format";
33     mainProgram = "unrpa";
34     license = licenses.gpl3;
35     maintainers = with maintainers; [ leo60228 ];
36   };