2021-01-25 08:26:54 +00:00
|
|
|
{ buildPythonPackage, fetchPypi, lib
|
2019-07-21 16:28:34 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "stringcase";
|
|
|
|
version = "1.2.0";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "023hv3gknblhf9lx5kmkcchzmbhkdhmsnknkv7lfy20rcs06k828";
|
|
|
|
};
|
|
|
|
|
|
|
|
# PyPi package does not include tests.
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/okunishinishi/python-stringcase";
|
2019-07-21 16:28:34 +01:00
|
|
|
description = "Convert string cases between camel case, pascal case, snake case etc…";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ alunduil ];
|
|
|
|
};
|
|
|
|
}
|