python313Packages.python-obfuscator: init at 0.0.2
Module to obfuscate code https://github.com/davidteather/python-obfuscator
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user