{ buildPythonPackage , enum34 , fetchPypi , isPy27 , lib , pathlib , pyyaml }: buildPythonPackage rec { pname = "confuse"; version = "1.5.0"; src = fetchPypi { inherit pname version; sha256 = "sha256-kvvKHHBhESDqciNy4MBxwNNCp195a0veS/A0jqSfAi4="; }; propagatedBuildInputs = [ pyyaml ] ++ lib.optionals isPy27 [ enum34 pathlib ] ; meta = with lib; { description = "Confuse is a configuration library for Python that uses YAML."; homepage = "https://github.com/beetbox/confuse"; license = licenses.mit; maintainers = with maintainers; [ lovesegfault ]; }; }