diff options
| author | Peter Simons <simons@cryp.to> | 2021-04-28 10:16:26 +0200 |
|---|---|---|
| committer | Peter Simons <simons@cryp.to> | 2021-04-28 10:16:26 +0200 |
| commit | 84a522635ff09161c0eb6719d888fe9080d36946 (patch) | |
| tree | c8e5a8d1adbf68125664009050bfce8a5f6fe9e4 /pkgs/development/python-modules/python-string-utils | |
| parent | befcd3e782384206c302b933bdd303ea7f19d293 (diff) | |
| parent | 5c5ec0bff67f139944c7d17bfd20a983485e3927 (diff) | |
Merge origin/master into haskell-updates.
Diffstat (limited to 'pkgs/development/python-modules/python-string-utils')
| -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 ]; + }; +} |
