mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
python311Packages.stringbrewer: init at 0.0.1
This commit is contained in:
parent
5b36e3394f
commit
e54958590f
37
pkgs/development/python-modules/stringbrewer/default.nix
Normal file
37
pkgs/development/python-modules/stringbrewer/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user