linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / jaraco_text / default.nix
blobc61c8f689ddc5f42447ae62051657ea8a2b7db7c
1 { lib, buildPythonPackage, fetchPypi, pythonOlder
2 , importlib-resources
3 , jaraco_functools
4 , setuptools_scm
5 }:
7 buildPythonPackage rec {
8   pname = "jaraco.text";
9   version = "3.2.0";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "1v0hz3h74m31jlbc5bxwkvrx1h2n7887bajrg1n1c3yc4q8qn1z5";
14   };
16   pythonNamespaces = [ "jaraco" ];
18   nativeBuildInputs =[ setuptools_scm ];
19   propagatedBuildInputs = [
20     jaraco_functools
21   ] ++ lib.optional (pythonOlder "3.7") [ importlib-resources ];
23   # no tests in pypi package
24   doCheck = false;
26   meta = with lib; {
27     description = "Module for text manipulation";
28     homepage = "https://github.com/jaraco/jaraco.text";
29     license = licenses.mit;
30     maintainers = with maintainers; [ ];
31   };