evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / python-lorem / default.nix
blobe60991c7935777ed2be58fe2f82adf6f0309a4e9
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6   pytestCheckHook,
7 }:
8 buildPythonPackage rec {
9   pname = "python-lorem";
10   version = "1.3.0.post3";
11   pyproject = true;
13   src = fetchPypi {
14     inherit version;
15     pname = "python_lorem";
16     hash = "sha256-Vw1TKheXg+AkhksnmWUfdIo+Jt7X7m1pS2f0Kfe8pv0=";
17   };
19   build-system = [
20     setuptools
21   ];
23   nativeCheckInputs = [
24     pytestCheckHook
25   ];
27   pythonImportsCheck = [
28     "lorem"
29   ];
31   meta = {
32     description = "Pythonic lorem ipsum generator";
33     homepage = "https://github.com/JarryShaw/lorem";
34     license = lib.licenses.bsd3;
35     maintainers = with lib.maintainers; [ aleksana ];
36   };