nixpkgs/pkgs/by-name/ce/cewler/package.nix
2024-09-16 10:33:34 -04:00

46 lines
886 B
Nix

{ lib
, python3
, fetchFromGitHub
, gitUpdater
}:
python3.pkgs.buildPythonApplication rec {
pname = "cewler";
version = "1.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "roys";
repo = "cewler";
rev = "v${version}";
hash = "sha256-lVI3p6YMugQ3yKHFNxISmUY7XZMuX/TXvVUoZfIeJog=";
};
nativeBuildInputs = with python3.pkgs; [
setuptools
wheel
];
propagatedBuildInputs = with python3.pkgs; [
pypdf
rich
scrapy
tld
twisted
];
pythonRelaxDeps = true;
# Tests require network access
doCheck = false;
passthru.updateScript = gitUpdater { rev-prefix = "v"; };
meta = with lib; {
description = "Custom Word List generator Redefined";
mainProgram = "cewler";
homepage = "https://github.com/roys/cewler";
license = licenses.cc-by-nc-40;
maintainers = with maintainers; [ emilytrau ];
};
}