Merge pull request #331157 from D3vil0p3r/patch-10

python3Packages.pywebcopy: init at 7.0.2
This commit is contained in:
Florian 2024-08-07 09:09:35 +02:00 committed by GitHub
commit 88b2f204c9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,45 @@
{
lib,
fetchFromGitHub,
buildPythonPackage,
pytestCheckHook,
setuptools,
cachecontrol,
lxml-html-clean,
requests,
six,
}:
buildPythonPackage rec {
pname = "pywebcopy";
version = "7.0.2";
pyproject = true;
src = fetchFromGitHub {
owner = "rajatomar788";
repo = "pywebcopy";
rev = "v${version}";
hash = "sha256-XTPk3doF9dqImsLtTB03YKMWLzQrJpJtjNXe+691rZo=";
};
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pywebcopy" ];
build-system = [ setuptools ];
dependencies = [
cachecontrol
lxml-html-clean
requests
six
];
meta = {
changelog = "https://github.com/rajatomar788/pywebcopy/blob/master/docs/changelog.md";
description = "Python package for cloning complete webpages and websites to local storage";
homepage = "https://github.com/rajatomar788/pywebcopy/";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ d3vil0p3r ];
};
}

View File

@ -10403,6 +10403,8 @@ self: super: with self; {
pytlv = callPackage ../development/python-modules/pytlv { };
pywebcopy = callPackage ../development/python-modules/pywebcopy { };
python-codon-tables = callPackage ../development/python-modules/python-codon-tables { };
python-creole = callPackage ../development/python-modules/python-creole { };