File tree Expand file tree Collapse file tree 1 file changed +17
-15
lines changed
pkgs/by-name/sn/snallygaster Expand file tree Collapse file tree 1 file changed +17
-15
lines changed Original file line number Diff line number Diff line change 1- { lib
2- , python3Packages
3- , fetchFromGitHub
1+ {
2+ lib ,
3+ python3Packages ,
4+ fetchFromGitHub ,
45} :
56
67python3Packages . buildPythonApplication rec {
78 pname = "snallygaster" ;
8- version = "0.0.12" ;
9+ version = "0.0.13" ;
10+ pyproject = true ;
911
1012 src = fetchFromGitHub {
1113 owner = "hannob" ;
12- repo = pname ;
13- rev = "v${ version } " ;
14- sha256 = "sha256-JXuRCUWpoGhBbU38XMEQovCiVfbyBMJ+SIrt3iqFuAo =" ;
14+ repo = "snallygaster" ;
15+ rev = "refs/tags/ v${ version } " ;
16+ hash = "sha256-d94Z/vLOcOa9N8WIgCkiZAciNUzdI4qbGXQOc8KNDEE =" ;
1517 } ;
1618
17- propagatedBuildInputs = with python3Packages ; [
18- urllib3
19+ build-system = with python3Packages ; [ setuptools ] ;
20+
21+ dependencies = with python3Packages ; [
1922 beautifulsoup4
2023 dnspython
24+ urllib3
2125 ] ;
2226
23- nativeCheckInputs = with python3Packages ; [
24- pytestCheckHook
25- ] ;
27+ nativeCheckInputs = with python3Packages ; [ pytestCheckHook ] ;
2628
2729 pytestFlagsArray = [
2830 # we are not interested in linting the project
@@ -31,9 +33,9 @@ python3Packages.buildPythonApplication rec {
3133
3234 meta = with lib ; {
3335 description = "Tool to scan for secret files on HTTP servers" ;
34- mainProgram = "snallygaster" ;
3536 homepage = "https://github.com/hannob/snallygaster" ;
36- license = licenses . cc0 ;
37- maintainers = [ ] ;
37+ license = licenses . bsd0 ;
38+ maintainers = with maintainers ; [ fab ] ;
39+ mainProgram = "snallygaster" ;
3840 } ;
3941}
You can’t perform that action at this time.
0 commit comments