8 buildPythonPackage rec {
11 disabled = pythonOlder "3.7";
13 src = fetchFromGitHub {
14 owner = "ramazanpolat";
17 hash = "sha256-c46JEQFg4KRwerqpMSgh6+tYRpKTOX02Lzsq4/meS3o=";
20 # make setuptools happy on case-sensitive filesystems
21 postPatch = ''if [[ ! -f README.md ]]; then mv README.MD README.md; fi'';
27 pythonImportsCheck = [ "prodict" ];
30 description = "Access Python dictionary as a class with type hinting and autocompletion";
31 homepage = "https://github.com/ramazanpolat/prodict";
32 license = lib.licenses.mit;
33 maintainers = with lib.maintainers; [ bcdarwin ];