10 buildPythonPackage rec {
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
21 hash = "sha256-ElL/LY2V2Z3efdV5FnDy9dSoBltULrzxsjaOx+7W9Oo=";
24 nativeBuildInputs = [ poetry-core ];
26 nativeCheckInputs = [ pytestCheckHook ];
28 pythonImportsCheck = [ "humps" ];
31 description = "Module to convert strings (and dictionary keys) between snake case, camel case and pascal case";
32 homepage = "https://github.com/nficano/humps";
33 license = with licenses; [ unlicense ];
34 maintainers = with maintainers; [ fab ];