python3Packages.xeger: init at 0.3.5
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user