python311Packages.stringbrewer: init at 0.0.1

This commit is contained in:
Dan Callaghan 2023-04-23 19:24:20 +10:00
parent 5b36e3394f
commit e54958590f
No known key found for this signature in database
GPG Key ID: 26B5AA2FDAF2F30A
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,37 @@
{ lib
, buildPythonPackage
, fetchPypi
, rstr
, sre-yield
, pythonImportsCheckHook
}:
buildPythonPackage rec {
pname = "stringbrewer";
version = "0.0.1";
src = fetchPypi {
inherit pname version;
hash = "sha256-wtETgi+Tk1ALJzzIM6Ic5zkDbALGL0cELg8X75uepkk=";
};
propagatedBuildInputs = [
rstr
sre-yield
];
nativeBuildInputs = [
pythonImportsCheckHook
];
# Package has no tests
doCheck = false;
pythonImportsCheck = [ "stringbrewer" ];
meta = with lib; {
description = "Python library to generate random strings matching a pattern";
homepage = "https://github.com/simoncozens/stringbrewer";
license = licenses.mit;
maintainers = with maintainers; [ danc86 ];
};
}

View File

@ -13621,6 +13621,8 @@ self: super: with self; {
strictyaml = callPackage ../development/python-modules/strictyaml { };
stringbrewer = callPackage ../development/python-modules/stringbrewer { };
stringcase = callPackage ../development/python-modules/stringcase { };
stringly = callPackage ../development/python-modules/stringly { };