lol

python313Packages.python-obfuscator: init at 0.0.2

Module to obfuscate code

https://github.com/davidteather/python-obfuscator

+39
+37
pkgs/development/python-modules/python-obfuscator/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + pytestCheckHook, 6 + regex, 7 + setuptools, 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "python-obfuscator"; 12 + version = "0.0.2"; 13 + pyproject = true; 14 + 15 + src = fetchFromGitHub { 16 + owner = "davidteather"; 17 + repo = "python-obfuscator"; 18 + tag = "V${version}"; 19 + hash = "sha256-LUD+9vNd1sdigbKG2tm5hE3zLtmor/2LqsIarUWS2Ek="; 20 + }; 21 + 22 + build-system = [ setuptools ]; 23 + 24 + dependencies = [ regex ]; 25 + 26 + nativeCheckInputs = [ pytestCheckHook ]; 27 + 28 + pythonImportsCheck = [ "python_obfuscator" ]; 29 + 30 + meta = { 31 + description = "Module to obfuscate code"; 32 + homepage = "https://github.com/davidteather/python-obfuscator"; 33 + changelog = "https://github.com/davidteather/python-obfuscator/releases/tag/${src.tag}"; 34 + license = lib.licenses.mit; 35 + maintainers = with lib.maintainers; [ fab ]; 36 + }; 37 + }
+2
pkgs/top-level/python-packages.nix
··· 13999 13999 14000 14000 python-oauth2 = callPackage ../development/python-modules/python-oauth2 { }; 14001 14001 14002 + python-obfuscator = callPackage ../development/python-modules/python-obfuscator { }; 14003 + 14002 14004 python-octaviaclient = callPackage ../development/python-modules/python-octaviaclient { }; 14003 14005 14004 14006 python-olm = callPackage ../development/python-modules/python-olm { };