-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
py7zr: init at 0.21.1 #324293
base: master
Are you sure you want to change the base?
py7zr: init at 0.21.1 #324293
Changes from all commits
9871b10
c72c175
5416351
68888a7
ff09010
1ef3d6f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ lib | ||
, buildPythonPackage | ||
, fetchPypi | ||
|
||
, setuptools | ||
, setuptools-scm | ||
}: | ||
|
||
buildPythonPackage rec { | ||
pname = "inflate64"; | ||
version = "1.0.0"; | ||
|
||
pyproject = true; | ||
|
||
src = fetchPypi { | ||
inherit pname version; | ||
|
||
hash = "sha256-MniCe4A88Aah3yUfPhM3TH0m23eeWjMynMEXibgEvC0="; | ||
}; | ||
build-system = [ | ||
setuptools | ||
setuptools-scm | ||
]; | ||
|
||
pythonImportsCheck = [ "inflate64" ]; | ||
|
||
meta = { | ||
homepage = "https://codeberg.org/miurahr/inflate64"; | ||
description = "Compress and decompress with Enhanced Deflate compression algorithm"; | ||
license = lib.licenses.gpl2Plus; | ||
maintainers = with lib.maintainers; [ ByteSudoer ]; | ||
}; | ||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ lib | ||
, buildPythonPackage | ||
, fetchPypi | ||
, setuptools | ||
, setuptools-scm | ||
}: | ||
|
||
buildPythonPackage rec { | ||
pname = "multivolumefile"; | ||
version = "0.2.3"; | ||
|
||
format = "pyproject"; | ||
|
||
src = fetchPypi { | ||
inherit pname version; | ||
hash = "sha256-oGSNCq+8luWRmNXBfprK1+tTGr6lEDXQjOgGDcrXCdY="; | ||
}; | ||
|
||
build-system = [ | ||
setuptools | ||
setuptools-scm | ||
]; | ||
|
||
pythonImportsCheck = [ "multivolumefile" ]; | ||
|
||
doCheck = true; | ||
|
||
meta = with lib; { | ||
homepage = "https://codeberg.org/miurahr/multivolume"; | ||
description = "Library to provide a file-object wrapping multiple files as virtually like as a single file"; | ||
license = licenses.gpl2Plus; | ||
maintainers = with maintainers; [ ByteSudoer ]; | ||
}; | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
{ lib | ||
, buildPythonPackage | ||
, fetchPypi | ||
|
||
, setuptools | ||
, setuptools-scm | ||
|
||
|
||
, brotli | ||
, inflate64 | ||
, multivolumefile | ||
, psutil | ||
, pybcj | ||
, pycryptodomex | ||
, pyppmd | ||
, pyzstd | ||
, texttable | ||
|
||
}: | ||
buildPythonPackage rec { | ||
pname = "py7zr"; | ||
version = "0.21.1"; | ||
|
||
format = "pyproject"; | ||
|
||
src = fetchPypi { | ||
inherit pname version; | ||
hash = "sha256-3t6O2LezKzWGrEdto6SCtp3UMyKUIL8PYsSVQEtyx5k="; | ||
}; | ||
|
||
build-system = [ | ||
setuptools | ||
setuptools-scm | ||
]; | ||
|
||
dependencies = [ | ||
brotli | ||
inflate64 | ||
multivolumefile | ||
psutil | ||
pybcj | ||
pycryptodomex | ||
pyppmd | ||
pyzstd | ||
texttable | ||
]; | ||
|
||
pythonImportsCheck = [ "py7zr" ]; | ||
|
||
meta = with lib; { | ||
homepage = "https://github.com/miurahr/py7zr"; | ||
description = "7zip in python3 with ZStandard, PPMd, LZMA2, LZMA1, Delta, BCJ, BZip2"; | ||
license = licenses.gpl2Only; | ||
maintainers = with maintainers; [ ByteSudoer ]; | ||
}; | ||
} |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,35 @@ | ||||||||||||||||||||||||||||||||||||||
{ lib | ||||||||||||||||||||||||||||||||||||||
, buildPythonPackage | ||||||||||||||||||||||||||||||||||||||
, fetchPypi | ||||||||||||||||||||||||||||||||||||||
, setuptools | ||||||||||||||||||||||||||||||||||||||
, setuptools-scm | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
, pytest | ||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That is unused |
||||||||||||||||||||||||||||||||||||||
}: | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
buildPythonPackage rec { | ||||||||||||||||||||||||||||||||||||||
pname = "pybcj"; | ||||||||||||||||||||||||||||||||||||||
version = "1.0.2"; | ||||||||||||||||||||||||||||||||||||||
format = "pyproject"; | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
src = fetchPypi { | ||||||||||||||||||||||||||||||||||||||
inherit pname version; | ||||||||||||||||||||||||||||||||||||||
hash = "sha256-x/W+9/R3I8U0ION3vGTSVThDvui8rF8K0HarFSR4ABg="; | ||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
build-system = [ | ||||||||||||||||||||||||||||||||||||||
setuptools | ||||||||||||||||||||||||||||||||||||||
setuptools-scm | ||||||||||||||||||||||||||||||||||||||
]; | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
pythonImportsCheck = [ "bcj" "lzma" ]; | ||||||||||||||||||||||||||||||||||||||
Comment on lines
+18
to
+27
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
meta = with lib; { | ||||||||||||||||||||||||||||||||||||||
homepage = "https://codeberg.org/miurahr/pybcj"; | ||||||||||||||||||||||||||||||||||||||
description = "BCJ(Branch-Call-Jump) filter for python"; | ||||||||||||||||||||||||||||||||||||||
license = licenses.gpl2Plus; | ||||||||||||||||||||||||||||||||||||||
maintainers = with maintainers; [ ByteSudoer ]; | ||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||
} |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,36 @@ | ||||||||||||||||||||||||||
{ lib | ||||||||||||||||||||||||||
, buildPythonPackage | ||||||||||||||||||||||||||
, fetchPypi | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
, setuptools | ||||||||||||||||||||||||||
, setuptools-scm | ||||||||||||||||||||||||||
}: | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
buildPythonPackage rec{ | ||||||||||||||||||||||||||
pname = "pyppmd"; | ||||||||||||||||||||||||||
version = "1.1.0"; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
format = "pyproject"; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
src = fetchPypi { | ||||||||||||||||||||||||||
inherit pname version; | ||||||||||||||||||||||||||
hash = "sha256-HTjOLkt+uEtTvIpSOAuU9mumw5MouIALMMK1vzFpOXM="; | ||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
build-system = [ | ||||||||||||||||||||||||||
setuptools | ||||||||||||||||||||||||||
setuptools-scm | ||||||||||||||||||||||||||
]; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
Comment on lines
+19
to
+26
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||
pythonImportsCheck = [ "pyppmd" ]; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
meta = with lib; { | ||||||||||||||||||||||||||
homepage = "https://codeberg.org/miurahr/pyppmd"; | ||||||||||||||||||||||||||
description = "PPMd compression/decompression library"; | ||||||||||||||||||||||||||
license = licenses.gpl2Plus; | ||||||||||||||||||||||||||
maintainers = with maintainers; [ ByteSudoer ]; | ||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||
} |
Original file line number | Diff line number | Diff line change | ||||||
---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,34 @@ | ||||||||
{ lib | ||||||||
, buildPythonPackage | ||||||||
, fetchFromGitHub | ||||||||
|
||||||||
, setuptools | ||||||||
}: | ||||||||
|
||||||||
buildPythonPackage rec { | ||||||||
pname = "pyzstd"; | ||||||||
version = "0.16.0"; | ||||||||
|
||||||||
format = "pyproject"; | ||||||||
Comment on lines
+11
to
+12
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
please replace all occurrences of this |
||||||||
|
||||||||
src = fetchFromGitHub { | ||||||||
repo = "pyzstd"; | ||||||||
owner = "Rogdham"; | ||||||||
rev = "${version}"; | ||||||||
fetchSubmodules = true; | ||||||||
hash = "sha256-//SeXs65Qcrbdyj3Ilk8XYUIgpwTej0Eaxv711g+3m8="; | ||||||||
}; | ||||||||
|
||||||||
build-system = [ | ||||||||
setuptools | ||||||||
]; | ||||||||
|
||||||||
pythonImportsCheck = [ "pyzstd" ]; | ||||||||
|
||||||||
meta = with lib; { | ||||||||
homepage = "https://github.com/Rogdham/pyzstd"; | ||||||||
description = "Python bindings to Zstandard (zstd) compression library"; | ||||||||
license = licenses.bsd3; | ||||||||
maintainers = with maintainers; [ ByteSudoer ]; | ||||||||
}; | ||||||||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.