diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-03-17 09:05:14 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-03-22 09:58:29 +0200 |
commit | 34bf3ed26b76d2978b2b0134676225e159c1d984 (patch) | |
tree | 80cada80c5030865c2e353913b17d236c1041913 | |
parent | 0a124c4615bd150c36dd90c2595942b79dabef6e (diff) |
gnu: Add python-block-tracing.
* gnu/packages/python-xyz.scm (python-block-tracing): New variable.
-rw-r--r-- | gnu/packages/python-xyz.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 8814a632af..d2a3329dfb 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -18412,3 +18412,24 @@ sequences.") (define-public python2-fuzzywuzzy (package-with-python2 python-fuzzywuzzy)) + +(define-public python-block-tracing + (package + (name "python-block-tracing") + (version "1.0.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "block_tracing" version)) + (sha256 + (base32 + "0s2y729qr5rs7n506qfh8cssk8m2bi6k2y5vbrh2z3raf2d01alz")))) + (build-system python-build-system) + (arguments '(#:tests? #f)) ; no tests + (home-page "https://github.com/rianhunter/block_tracing") + (synopsis "Protect process memory") + (description + "@code{block_tracing} is a tiny Python library that can be used to +prevent debuggers and other applications from inspecting the memory within +your process.") + (license license:expat))) |