blob: f4f96039b9f699450ef9c4d2b93ec62bc2e7fea6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
{ 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
pythonRelaxDepsHook
];
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 ];
};
}
|