diff options
| author | Matthieu Coudron <mcoudron@hotmail.com> | 2021-04-16 14:50:31 +0200 |
|---|---|---|
| committer | Matthieu Coudron <mcoudron@hotmail.com> | 2021-04-25 14:35:51 +0200 |
| commit | b929d94a7521d490bd6092e5f9ec34fe4c22b997 (patch) | |
| tree | 67bdafcc9d7bbe73c138b638ec088dcf846ccc9b /pkgs/development/python-modules/python-string-utils/default.nix | |
| parent | c14b9e5f867c5c7c0a11d3184bfc7153cf180229 (diff) | |
python3Packages.python-string-utils: init at 1.0.0
Diffstat (limited to 'pkgs/development/python-modules/python-string-utils/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/python-string-utils/default.nix | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/python-string-utils/default.nix b/pkgs/development/python-modules/python-string-utils/default.nix new file mode 100644 index 000000000000..d8d1b136fb3e --- /dev/null +++ b/pkgs/development/python-modules/python-string-utils/default.nix @@ -0,0 +1,27 @@ +{ lib +, buildPythonPackage +, fetchPypi +, pytest +}: + +buildPythonPackage rec { + pname = "python-string-utils"; + version = "1.0.0"; + + src = fetchPypi { + inherit pname version; + sha256 = "sha256-3PkGCwPwdkfApgNAjciwP4B/O1SgXG4Z6xRGAlb6wMs="; + }; + + pythonImportsCheck = ["string_utils"]; + + # tests are not available in pypi tarball + doCheck = false; + + meta = with lib; { + description = "A handy Python library to validate, manipulate and generate strings."; + homepage = "https://github.com/daveoncode/python-string-utils"; + license = licenses.mit; + maintainers = with maintainers; [ teto ]; + }; +} |
