python3Packages.xeger: init at 0.3.5

This commit is contained in:
Robert Schütz
2025-10-31 08:55:41 -07:00
parent a7fc11be66
commit 49df0d02ed
2 changed files with 37 additions and 0 deletions
@@ -0,0 +1,35 @@
{
buildPythonPackage,
fetchFromGitHub,
lib,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "xeger";
version = "0.3.5";
pyproject = true;
src = fetchFromGitHub {
owner = "crdoconnor";
repo = "xeger";
tag = version;
hash = "sha256-XujytGzBwJ59C5VihuFUJUxqhyjOIU4sI60hXUqLQvM=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "xeger" ];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
description = "Library to generate random strings from regular expressions";
homepage = "https://github.com/crdoconnor/xeger";
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.dotlambda ];
};
}
+2
View File
@@ -20374,6 +20374,8 @@ self: super: with self; {
xeddsa = toPythonModule (callPackage ../development/python-modules/xeddsa { });
xeger = callPackage ../development/python-modules/xeger { };
xen = toPythonModule (pkgs.xen.override { python3Packages = self; });
xformers = callPackage ../development/python-modules/xformers {