evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / stringbrewer / default.nix
blob9b5fe137e087174c6e837595823008e87dc913f5
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   rstr,
6   sre-yield,
7 }:
9 buildPythonPackage rec {
10   pname = "stringbrewer";
11   version = "0.0.1";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-wtETgi+Tk1ALJzzIM6Ic5zkDbALGL0cELg8X75uepkk=";
17   };
19   propagatedBuildInputs = [
20     rstr
21     sre-yield
22   ];
24   # Package has no tests
25   doCheck = false;
26   pythonImportsCheck = [ "stringbrewer" ];
28   meta = with lib; {
29     description = "Python library to generate random strings matching a pattern";
30     homepage = "https://github.com/simoncozens/stringbrewer";
31     license = licenses.mit;
32     maintainers = with maintainers; [ danc86 ];
33   };