at master 620 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5}: 6 7buildPythonPackage rec { 8 pname = "flatdict"; 9 version = "4.0.1"; 10 format = "setuptools"; 11 12 src = fetchFromGitHub { 13 owner = "gmr"; 14 repo = "flatdict"; 15 rev = version; 16 hash = "sha256-CWsTiCNdIKSQtjpQC07lhZoU1hXT/MGpXdj649x2GlU="; 17 }; 18 19 pythonImportsCheck = [ "flatdict" ]; 20 21 meta = with lib; { 22 description = "Python module for interacting with nested dicts as a single level dict with delimited keys"; 23 homepage = "https://github.com/gmr/flatdict"; 24 license = licenses.bsd3; 25 maintainers = with maintainers; [ lovesegfault ]; 26 }; 27}