mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-07 20:53:22 +00:00
Merge pull request #331157 from D3vil0p3r/patch-10
python3Packages.pywebcopy: init at 7.0.2
This commit is contained in:
commit
88b2f204c9
45
pkgs/development/python-modules/pywebcopy/default.nix
Normal file
45
pkgs/development/python-modules/pywebcopy/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user