Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / python-string-utils / default.nix
blob17619b1b4db720495e5e7c44905684fdff9c7bff
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "python-string-utils";
8   version = "1.0.0";
9   format = "setuptools";
11   src = fetchPypi {
12     inherit pname version;
13     hash = "sha256-3PkGCwPwdkfApgNAjciwP4B/O1SgXG4Z6xRGAlb6wMs=";
14   };
16   pythonImportsCheck = ["string_utils"];
18   # tests are not available in pypi tarball
19   doCheck = false;
21   meta = with lib; {
22     description = "A handy Python library to validate, manipulate and generate strings.";
23     homepage = "https://github.com/daveoncode/python-string-utils";
24     license = licenses.mit;
25     maintainers = with maintainers; [ teto ];
26   };