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