python313Packages.python-obfuscator: init at 0.0.2

Module to obfuscate code

https://github.com/davidteather/python-obfuscator
This commit is contained in:
Fabian Affolter
2025-04-05 17:34:24 +02:00
parent e432bbec1e
commit fb82e8a2a1
2 changed files with 39 additions and 0 deletions
@@ -0,0 +1,37 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
regex,
setuptools,
}:
buildPythonPackage rec {
pname = "python-obfuscator";
version = "0.0.2";
pyproject = true;
src = fetchFromGitHub {
owner = "davidteather";
repo = "python-obfuscator";
tag = "V${version}";
hash = "sha256-LUD+9vNd1sdigbKG2tm5hE3zLtmor/2LqsIarUWS2Ek=";
};
build-system = [ setuptools ];
dependencies = [ regex ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "python_obfuscator" ];
meta = {
description = "Module to obfuscate code";
homepage = "https://github.com/davidteather/python-obfuscator";
changelog = "https://github.com/davidteather/python-obfuscator/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
+2
View File
@@ -13999,6 +13999,8 @@ self: super: with self; {
python-oauth2 = callPackage ../development/python-modules/python-oauth2 { };
python-obfuscator = callPackage ../development/python-modules/python-obfuscator { };
python-octaviaclient = callPackage ../development/python-modules/python-octaviaclient { };
python-olm = callPackage ../development/python-modules/python-olm { };