lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python313Packages.badsecrets: init at 0.10.35

Module for detecting known secrets across many web frameworks

https://github.com/blacklanternsecurity/badsecrets

+58
+1
pkgs/by-name/ba/badsecrets/package.nix
··· 1 + { python3Packages }: with python3Packages; toPythonApplication badsecrets
+55
pkgs/development/python-modules/badsecrets/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + colorama, 5 + django, 6 + fetchFromGitHub, 7 + flask-unsign, 8 + poetry-core, 9 + poetry-dynamic-versioning, 10 + pycryptodome, 11 + pyjwt, 12 + requests, 13 + viewstate, 14 + }: 15 + 16 + buildPythonPackage rec { 17 + pname = "badsecrets"; 18 + version = "0.10.35"; 19 + pyproject = true; 20 + 21 + src = fetchFromGitHub { 22 + owner = "blacklanternsecurity"; 23 + repo = "badsecrets"; 24 + tag = "v${version}"; 25 + hash = "sha256-i80f4qPX695HFdNefIT2sqcKsdMTEiYXUltF2Gj6aAI="; 26 + }; 27 + 28 + build-system = [ 29 + poetry-core 30 + poetry-dynamic-versioning 31 + ]; 32 + 33 + dependencies = [ 34 + colorama 35 + django 36 + flask-unsign 37 + pycryptodome 38 + pyjwt 39 + requests 40 + viewstate 41 + ]; 42 + 43 + pythonImportsCheck = [ "badsecrets" ]; 44 + 45 + meta = { 46 + description = "Module for detecting known secrets across many web frameworks"; 47 + homepage = "https://github.com/blacklanternsecurity/badsecrets"; 48 + changelog = "https://github.com/blacklanternsecurity/badsecrets/releases/tag/${src.tag}"; 49 + license = with lib.licenses; [ 50 + agpl3Only 51 + gpl3Only 52 + ]; 53 + maintainers = with lib.maintainers; [ fab ]; 54 + }; 55 + }
+2
pkgs/top-level/python-packages.nix
··· 1631 1631 1632 1632 bacpypes = callPackage ../development/python-modules/bacpypes { }; 1633 1633 1634 + badsecrets = callPackage ../development/python-modules/badsecrets { }; 1635 + 1634 1636 bagit = callPackage ../development/python-modules/bagit { }; 1635 1637 1636 1638 baize = callPackage ../development/python-modules/baize { };