Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / python-string-utils / default.nix
blobd0164062b90bf25c0d509a0007ba91c397dcc85f
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "python-string-utils";
8   version = "1.0.0";
10   src = fetchPypi {
11     inherit pname version;
12     hash = "sha256-3PkGCwPwdkfApgNAjciwP4B/O1SgXG4Z6xRGAlb6wMs=";
13   };
15   pythonImportsCheck = ["string_utils"];
17   # tests are not available in pypi tarball
18   doCheck = false;
20   meta = with lib; {
21     description = "A handy Python library to validate, manipulate and generate strings.";
22     homepage = "https://github.com/daveoncode/python-string-utils";
23     license = licenses.mit;
24     maintainers = with maintainers; [ teto ];
25   };