mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
python3Packages.pyunpack: init at 0.3
This commit is contained in:
parent
9bd2b892a1
commit
2644f7e83c
2 changed files with 60 additions and 0 deletions
58
pkgs/development/python-modules/pyunpack/default.nix
Normal file
58
pkgs/development/python-modules/pyunpack/default.nix
Normal file
|
@ -0,0 +1,58 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pytestCheckHook
|
||||
, easyprocess
|
||||
, entrypoint2
|
||||
, patool
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyunpack";
|
||||
version = "0.3";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ponty";
|
||||
repo = "pyunpack";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-1MAdiX6+u35f6S8a0ZcIIebZE8bbxTy+0TnMohJ7J6s=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace pyunpack/__init__.py \
|
||||
--replace \
|
||||
'_exepath("patool")' \
|
||||
'"${patool}/bin/.patool-wrapped"'
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [
|
||||
easyprocess
|
||||
entrypoint2
|
||||
];
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
pytestFlagsArray = [ "-x" ];
|
||||
|
||||
pythonImportsCheck = [ "pyunpack" ];
|
||||
|
||||
disabledTestPaths = [
|
||||
# unfree
|
||||
"tests/test_rar.py"
|
||||
|
||||
# We get "patool: error: unrecognized arguments: --password 123"
|
||||
# The currently packaged version of patool does not support this flag.
|
||||
# https://github.com/wummel/patool/issues/114
|
||||
# FIXME: Re-enable these once patool is updated
|
||||
"tests/test_rarpw.py"
|
||||
"tests/test_zippw.py"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Unpack archive files in python";
|
||||
homepage = "https://github.com/ponty/pyunpack";
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ pbsds ];
|
||||
};
|
||||
}
|
|
@ -8193,6 +8193,8 @@ self: super: with self; {
|
|||
|
||||
pyuca = callPackage ../development/python-modules/pyuca { };
|
||||
|
||||
pyunpack = callPackage ../development/python-modules/pyunpack { };
|
||||
|
||||
pyutil = callPackage ../development/python-modules/pyutil { };
|
||||
|
||||
pyzbar = callPackage ../development/python-modules/pyzbar { };
|
||||
|
|
Loading…
Reference in a new issue