1{
2 buildPythonPackage,
3 fetchPypi,
4 lib,
5}:
6
7buildPythonPackage rec {
8 pname = "stringcase";
9 version = "1.2.0";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "023hv3gknblhf9lx5kmkcchzmbhkdhmsnknkv7lfy20rcs06k828";
15 };
16
17 # PyPi package does not include tests.
18 doCheck = false;
19
20 meta = with lib; {
21 homepage = "https://github.com/okunishinishi/python-stringcase";
22 description = "Convert string cases between camel case, pascal case, snake case etc…";
23 license = licenses.mit;
24 maintainers = with maintainers; [ alunduil ];
25 };
26}